-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.clj
44 lines (40 loc) · 2.45 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
44
;; 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/deep-diamond "0.29.5"
:description "Fast Clojure Deep Learning Library"
:author "Dragan Djuric"
:url "http://github.com/uncomplicate/deep-diamond"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.3"]
[uncomplicate/neanderthal "0.49.2"]
[org.bytedeco/dnnl-platform "3.3.4-1.5.10"]]
:profiles {:dev {:plugins [[lein-midje "3.2.1"]
[lein-codox "0.10.8"]]
:resource-paths ["data"]
:global-vars {*warn-on-reflection* true
*assert* false
*unchecked-math* :warn-on-boxed
*print-length* 128}
:dependencies [[midje "1.10.10"]
[codox-theme-rdash "0.1.2"]
[org.clojure/data.csv "1.0.1"]
[org.bytedeco/mkl "2024.0-1.5.10" :classifier linux-x86_64-redist]
[org.bytedeco/cuda "12.3-8.9-1.5.10" :classifier linux-x86_64-redist]]
:codox {:metadata {:doc/format :markdown}
:source-uri "http://github.com/uncomplicate/deep-diamond/blob/master/{filepath}#L{line}"
:themes [:rdash]
:namespaces [uncomplicate.diamond.tensor
uncomplicate.diamond.dnn
uncomplicate.diamond.metrics
uncomplicate.diamond.native
uncomplicate.diamond.internal.protocols]
:output-path "docs/codox"}
:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true"]}}
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
:source-paths ["src/clojure" "src/device"])