This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-12-28
Channels
- # ai (1)
- # beginners (190)
- # boot (24)
- # cider (43)
- # cljsjs (3)
- # cljsrn (29)
- # clojars (6)
- # clojure (310)
- # clojure-dev (6)
- # clojure-nl (6)
- # clojure-russia (11)
- # clojure-spec (66)
- # clojure-uk (95)
- # clojurescript (103)
- # clojurewerkz (2)
- # core-async (9)
- # cursive (4)
- # datomic (5)
- # hoplon (163)
- # lein-figwheel (52)
- # off-topic (6)
- # om (6)
- # onyx (42)
- # perun (8)
- # re-frame (16)
- # reagent (10)
- # ring (7)
- # ring-swagger (1)
- # rum (1)
- # slack-help (2)
- # uncomplicate (1)
- # untangled (80)
I have a problem in running uncomplicate/neanderthal 0.8.0
on Ubuntu 16.04.
I installed pre-packaged atlas as follows.
$ sudo apt install libatlas-base-dev
Then I ran the example like this.
(ns linear.core
(:require [uncomplicate.neanderthal.core :refer :all]
[uncomplicate.neanderthal.native :refer :all] ))
;; We create two matrices...
(def a (dge 2 3 [1 2 3 4 5 6]))
(def b (dge 3 2 [1 3 5 7 9 11]))
;; ... and multiply them
(mm a b)
But the next error occured when I ran the above (mm a b)
line. (The other lines run correctly.)
java: symbol lookup error: /tmp/libneanderthal-atlas-0.3.19186364949940560334.so: undefined symbol: cblas_dgemm
Subprocess failed
Could anyone tell me why this happens?