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 was exploring the library and I got some functions working but mat mul seems to fail on Mac;
Versions:
Mac version: 14.2 (23C64)
kotlin("jvm") version "1.9.21"
Gradle: implementation("org.jblas:jblas:1.2.4")
packageorg.exampleimportorg.jblas.FloatMatrixfunmain() {
println("Hello World!")
varN=100;
var rotation =FloatMatrix.rand(N,N);
var vector =FloatMatrix.rand(N,N);
var g = rotation.mmul(vector);
}
Error:
Exception in thread "main" java.lang.UnsatisfiedLinkError: 'void org.jblas.NativeBlas.sgemm(char, char, int, int, int, float, float[], int, int, float[], int, int, float, float[], int, int)'
at org.jblas.NativeBlas.sgemm(Native Method)
at org.jblas.SimpleBlas.gemm(SimpleBlas.java:675)
at org.jblas.FloatMatrix.mmuli(FloatMatrix.java:1781)
at org.jblas.FloatMatrix.mmul(FloatMatrix.java:3138)
at org.example.MainKt.main(Main.kt:12)
at org.example.MainKt.main(Main.kt)
-- org.jblas INFO Deleting /var/folders/04/y960qb597k12fz20tcfxwmz40000gn/T/jblas15656002949808389317
The text was updated successfully, but these errors were encountered:
Thanks for all of your great work!
I was exploring the library and I got some functions working but mat mul seems to fail on Mac;
Versions:
Error:
The text was updated successfully, but these errors were encountered: