-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
52 lines (48 loc) · 3.65 KB
/
project.clj
File metadata and controls
52 lines (48 loc) · 3.65 KB
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
45
46
47
48
49
50
51
52
;; 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 org.uncomplicate/diamond-onnxrt "0.24.0"
:description "Fast Clojure Machine Learning Model Integration"
: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.12.4"]
[uncomplicate/commons "0.19.0"]
[org.uncomplicate/deep-diamond-base "0.43.0"]
[org.uncomplicate/deep-diamond-dnnl "0.43.0"]
[org.bytedeco/onnxruntime-platform "1.24.1-1.5.13"]]
:profiles {:dev [:dev/all ~(leiningen.core.utils/get-os)]
:dev/all {:plugins [[lein-midje "3.2.1"]]
:resource-paths ["data"]
:global-vars {*warn-on-reflection* true
*assert* false
*unchecked-math* :warn-on-boxed
*print-length* 128}
:dependencies [[midje "1.10.10"]]
:jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true"
"--enable-native-access=ALL-UNNAMED"]}
:linux {:dependencies [[org.bytedeco/onnxruntime-platform-gpu "1.24.1-1.5.13"]
[org.uncomplicate/neanderthal-mkl "0.61.0"]
[org.bytedeco/mkl "2025.3-1.5.13" :classifier "linux-x86_64-redist"]
[org.uncomplicate/deep-diamond-cuda "0.43.0"]
[org.bytedeco/cuda-redist "13.1-9.19-1.5.13" :classifier "linux-x86_64"]
[org.bytedeco/cuda-redist-cublas "13.1-9.19-1.5.13" :classifier "linux-x86_64"]
#_[org.bytedeco/cuda-redist-cudnn "13.1-9.19-1.5.13" :classifier "linux-x86_64"]
[org.bytedeco/cuda-redist-nccl "13.1-9.19-1.5.13" :classifier "linux-x86_64"]]}
:windows {:dependencies [[org.bytedeco/onnxruntime-platform-gpu "1.24.1-1.5.13"]
[org.uncomplicate/neanderthal-mkl "0.61.0"]
[org.bytedeco/mkl "2025.3-1.5.13" :classifier "windows-x86_64-redist"]
[org.uncomplicate/deep-diamond-cuda "0.43.0"]
[org.bytedeco/cuda-redist "13.1-9.19-1.5.13" :classifier "windows-x86_64"]
[org.bytedeco/cuda-redist-cublas "13.1-9.19-1.5.13" :classifier "windows-x86_64"]
[org.bytedeco/cuda-redist-cudnn "13.1-9.19-1.5.13" :classifier "windows-x86_64"]
[org.bytedeco/cuda-redist-nccl "13.1-9.19-1.5.13" :classifier "windows-x86_64"]]}
:macosx {:dependencies [[org.uncomplicate/neanderthal-accelerate "0.61.0"]
[org.bytedeco/openblas "0.3.31-1.5.13" :classifier "macosx-arm64"]]}}
;; :repositories [["maven-central-snapshots" "https://central.sonatype.com/repository/maven-snapshots"]]
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"])