uncomplicate

2018-07-26T03:29:57.000100Z

In project.clj, trying to reference neanderthal 0.20.4 with :dependencies [[org.clojure/clojure "1.9.0"] [uncomplicate/neanderthal "0.20.4"] ... I get: Dependency resolution error Error synchronising foobar:0.1.0: Could not find artifact uncomplicate:neanderthal-native:jar:0.20.0 in central (https://repo1.maven.org/maven2/) I don't see ...native.jar:0.20.0 at, e.g., clojars either.

2018-07-26T06:46:31.000003Z

@chgraham Ooops. Sorry. Fixed...

ben 2018-07-26T17:14:38.000321Z

Attempting to use neanderthal 0.20.4 with lein:

:dependencies [[org.clojure/clojure "1.8.0"]
                          [uncomplicate/neanderthal "0.20.4"]
$ lein do clean, repl
Could not find artifact org.jcuda:jcuda-natives:jar:apple-x86_64:0.9.2 in central (<https://repo1.maven.org/maven2/>)
Could not find artifact org.jcuda:jcuda-natives:jar:apple-x86_64:0.9.2 in clojars (<https://repo.clojars.org/>)
Could not find artifact org.jcuda:jcublas-natives:jar:apple-x86_64:0.9.2 in central (<https://repo1.maven.org/maven2/>)
Could not find artifact org.jcuda:jcublas-natives:jar:apple-x86_64:0.9.2 in clojars (<https://repo.clojars.org/>)

2018-07-26T17:36:19.000405Z

@torvaney please read the corresponding issue and take a look at /example/hello-world/project.clj. You need to add jcuda to exclusions if you're on a mac for now.

ben 2018-07-27T08:47:02.000234Z

Ah right. Thank you very much