lungsi
lungsi
Using [`ldd`](https://www.freebsd.org/doc/handbook/linuxemu-lbc-install.html) the library shared by the installed [OpenBLAS](https://www.openblas.net/) were shown as ``` $ ldd /usr/local/lib/libopenblas.so /usr/local/lib/libopenblas.so: libthr.so.3 => /lib/libthr.so.3 (0x80067d000) libgfortran.so.5 => /usr/local/lib/gcc9/libgfortran.so.5 (0x802e00000) libgomp.so.1 => /usr/local/lib/gcc9/libgomp.so.1 (0x803295000) libc.so.7...
I am **not** using docker or any kind of virtualization (well, disregarding JVM). My OS is FreeBSD and I am using Clojure to call jblas. jblas as a dependency is...
Thank you @mikiobraun and @brada4 Based on > In principle, all you need is the jblas-1.2.5.jar in your classpath. jblas-1.2.5.jar will then automagically extract your platform dependent native library to...
Actually this is **all** the output. My console does not show any other error message.
No worries @mikiobraun Here's the output from running `java -jar jblas-1.2.5.jar` ``` $ java -jar jblas-1.2.5.jar -- org.jblas INFO jblas version is 1.2.4 Simple benchmark for jblas Running sanity benchmarks....
So I guess adding the following lines in the `NativeBlasLibraryLoader.class` file ``` ... } else if (name.equals("FreeBSD") && arch.equals("amd64")) { loader.loadLibrary(libname, false); loader.loadLibrary(libname, false); } ``` and recompiling the jar...
Yes you are exactly right. I just want it to work :-) I will therefore go ahead with your suggestion to build jblas with respective parameters. I guess this also...
Just to be sure I am following the steps correctly. Can you confirm if these are? ``` # git clone https://github.com/jblas-project/jblas.git # cd jblas # ./configure --dynamic-libs # make #...
Thanks so much @mikiobraun
I am also getting the same error while attempting to run the example, [`ex3.1_squid_vclamp.py`](https://moose.readthedocs.io/en/latest/user/py/rdesigneur/rdes.html#hh-squid-model-with-voltage-clamp). ``` Name: pymoose Version: 3.1.5 Summary: Python scripting interface of MOOSE Simulator (https://moose.ncbs.res.in) Home-page: http://moose.ncbs.res.in Author:...