-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathproject.clj
23 lines (21 loc) · 1.17 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject thinktopic/cortex "0.9.23-SNAPSHOT"
:description "A neural network toolkit for Clojure."
:url "https://github.com/thinktopic/cortex"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha17"]
[thinktopic/think.datatype "0.3.17"]
[com.github.fommil.netlib/all "1.1.2" :extension "pom"]
[com.taoensso/nippy "2.13.0"]
;; Change the following dep to depend on different versions of CUDA
;[org.bytedeco.javacpp-presets/cuda "7.5-1.2"]
[org.bytedeco.javacpp-presets/cuda "8.0-1.2"]
[thinktopic/think.parallel "0.3.7"]
[thinktopic/think.resource "1.2.1"]
[org.clojure/math.combinatorics "0.1.4"]]
:java-source-paths ["java"]
:profiles {:dev {:source-paths ["src" "test/cljc" "test/clj"]}
:test {:source-paths ["src" "test/cljc" "test/clj"]}
:cpu-only {:test-selectors {:default (complement :gpu)}
:source-paths ["src" "test/cljc" "test/clj"]}}
:plugins [[lein-codox "0.10.2"]])