Hi! I try to get neanderthal to work on my Mac (Catalina 10.15.6). I have successfully installed Intel MKL from here https://software.intel.com/content/www/us/en/develop/tools/math-kernel-library.html and I use IDEA/Cursive as IDE with tools.deps. My deps.edn file looks like this:
{:paths ["development/src"]
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/tools.deps.alpha {:mvn/version "0.8.695"}
uncomplicate/neanderthal {:mvn/version "0.38.0"
:exclusions [org.jcuda/jcuda-natives
org.jcuda/jcublas-natives]}}}
I can start a REPL from the IDE with no errors, but when I try to load this namespace:
(ns dev
(:require [uncomplicate.neanderthal
[native :refer :all]
[core :refer :all]]))
...then I get this error:
No namespace: uncomplicate.neanderthal.internal.host.mkl
When I look in the IDE, the namespace is there:I don't know what could be the problem, as I don't use Idea/Cursive. Does your project work from terminal?