-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathproject.clj
43 lines (39 loc) · 2.2 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;; Copyright (c) Dragan Djuric. All rights reserved.
;; The use and distribution terms for this software are covered by the
;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) or later
;; which can be found in the file LICENSE at the root of this distribution.
;; By using this software in any fashion, you are agreeing to be bound by
;; the terms of this license.
;; You must not remove this notice, or any other, from this software.
(defproject uncomplicate/bayadera "0.4.0-SNAPSHOT"
:description "Bayesian Inference and Probabilistic Machine Learning Library for Clojure"
:author "Dragan Djuric"
:url "http://github.com/uncomplicate/bayadera"
:scm {:name "git"
:url "https://github.com/uncomplicate/bayadera"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[uncomplicate/commons "0.8.0"]
[uncomplicate/fluokitten "0.9.1"]
[uncomplicate/clojurecl "0.13.0"]
[uncomplicate/clojurecuda "0.7.2-SNAPSHOT"]
[uncomplicate/neanderthal "0.25.7-SNAPSHOT"]
[org.apache.commons/commons-math3 "3.6.1"]
[quil "3.0.0"]]
:codox {:src-dir-uri "http://github.com/uncomplicate/bayadera/blob/master"
:src-linenum-anchor-prefix "L"
:output-dir "docs/codox"}
:profiles {:dev {:dependencies [[midje "1.9.8"]]
:plugins [[lein-midje "3.2.1"]
[codox "0.10.6"]]
:global-vars {*warn-on-reflection* true
*unchecked-math* :warn-on-boxed
*print-length* 16}
:jvm-opts ^:replace ["-XX:MaxDirectMemorySize=16g" "-XX:+UseLargePages"
"-Duncomplicate.cudadevrt=/usr/local/cuda/lib64/libcudadevrt.a"
#_"--add-opens=java.base/jdk.internal.ref=ALL-UNNAMED"]}}
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
:source-paths ["src/clojure" "src/device"]
:resource-paths ["src/device"]
:test-paths ["test" "test/clojure"])