You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered a problem with the apgas library when running on SPARC architecture. The problem is that the calls made by the library to Kryo rely on Sun.misc.Unsafe. This is fine on x86 but crashes on SPARC architectures.
I have encountered a problem with the apgas library when running on SPARC architecture. The problem is that the calls made by the library to Kryo rely on Sun.misc.Unsafe. This is fine on x86 but crashes on SPARC architectures.
It is a known issue with the Kryo library and can easily be solved : EsotericSoftware/kryo#219 (comment)
In file apgas/apgas/src/apgas/impl/KryoSerializer.java
Replacing
UnsafeOutput
byOutput
andUnsafeInput
byInput
will prevent the crash from happening.The text was updated successfully, but these errors were encountered: