Remy Prechelt
Remy Prechelt
Any chance of this getting merged at some point? PR is a fantastic rewrite - some colleagues lost a few hours working with master before realizing that Todd's fork existed...
Just tried the same using a `jupyter-julia` session. I can save transparent plots directly from org-mode code blocks (by not returning the plot as the result of the block and...
You're correct - it should just not load/use any MKL instructions - I'll take a look at why the MKL detection is failing and get back to you ASAP. Thanks...
This is strange - the error is caused by the lack of `libmkl_intel_thread.dylib`. However, `libmkl_intel_thread.dylib` is only loaded during MKL initialization which is guarded with a `if (Libdl.find_library(["libmkl_rt"], ["/opt/intel/mkl/lib"]) !=...
Was any progress made on this issue? I'm experiencing a similar problem (although I am compiling straight for x86-64). `nc-config --has-nc4` reports `yes`, but `./configure` for this repo errors and...
I'm experiencing this same issue on an M1 Mac on Julia 1.7.1 and 1.8.0 (just released as of this comment), for a completely unrelated code.
It would be possible to write a multi-dimensional array wrapper around these libraries, but the underlying frameworks (Accelerate, Yeppp, VML) do not support multi-dimensional arrays - i.e. write a wrapper...
Simon is right - I have pushed a commit to master that allows for multi-dimensional arrays (the previous `X::Vector{$T}` on function arguments resulted in a type error). However, due to...
I'm not reluctant at all! I'm always happy to add new features to this package - it just may take me a couple of days to find the time to...
The error is because I'm using `sysctl` to determine whether a particular processor supports AVX/AVX2.0/AVX512 - I'm guessing that your permissions on that system don't allow for calling `sysctl -a`?...