gigasquid commented on issue #11205: Clojure Contrib Package URL: https://github.com/apache/incubator-mxnet/pull/11205#issuecomment-399588943 @larroy I just looked at the Jenkins CI pipeline. I see there is a scala cpu and gpu tests right now. For the current clojure package, the tests are all cpu. I'm not sure what system the CI is running on (OSX or Linux)? If it's linux then the Scala jar dependency will need to be changed in the `project.clj` file. Currently, it is using OSX ```clojure ;; Choose the right dependency for your system [org.apache.mxnet/mxnet-full_2.11-osx-x86_64-cpu "1.2.1"] ;[org.apache.mxnet/mxnet-full_2.11-linux-x86_64-cpu "1.2.1"] ;[org.apache.mxnet/mxnet-full_2.11-linux-x86_64-gpu "1.2.1"] ``` To choose the linux cpu, you would change this to ```clojure ;; Choose the right dependency for your system ;[org.apache.mxnet/mxnet-full_2.11-osx-x86_64-cpu "1.2.1"] [org.apache.mxnet/mxnet-full_2.11-linux-x86_64-cpu "1.2.1"] ;[org.apache.mxnet/mxnet-full_2.11-linux-x86_64-gpu "1.2.1"] ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services