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
K/N provides several extension functions allowing to read and write multi-byte primitive types from and to ByteArrays.
For example, for Long there are ByteArray.getLongAt and ByteArray.setLongAt functions.
When used, these functions should slightly boost the performance on Native, at least because they reduce the number of bound checks.
On MacOS/Arm64, use of these functions showed 10% performance improvement for LongBenchmark.
The text was updated successfully, but these errors were encountered:
K/N provides several extension functions allowing to read and write multi-byte primitive types from and to
ByteArrays
.For example, for
Long
there are ByteArray.getLongAt and ByteArray.setLongAt functions.When used, these functions should slightly boost the performance on Native, at least because they reduce the number of bound checks.
On MacOS/Arm64, use of these functions showed 10% performance improvement for
LongBenchmark
.The text was updated successfully, but these errors were encountered: