-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
29 lines (21 loc) · 1019 Bytes
/
Copy pathproject.clj
File metadata and controls
29 lines (21 loc) · 1019 Bytes
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
(defproject clumatra "0.1.0-SNAPSHOT"
:description "Clumatra: Clojure for the GPU via Sumatra / Graal / Okra"
:url "http://git@github.com:JulesGosnell/clumatra"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.7.0-alpha1"]
[org.clojure/core.rrb-vector "0.0.11"]
[com.amd/okra "1.9"]
]
:plugins [[lein-nodisassemble "0.1.3"]]
:repositories [["ouroboros" "http://ouroboros.dyndns-free.com/artifactory/repo"]]
:global-vars {*warn-on-reflection* true
*assert* false
*unchecked-math* true}
:jvm-opts ["-Xms1g" "-Xmx8g" "-server"
;;"-Dclumatra.verbose=true"
"-Djava.library.path=/home/jules/workspace/clumatra/lib"
"-XX:-UseHSAILDeoptimization" "-XX:-UseHSAILSafepoints" "-G:Log=CodeGen" "-XX:+GPUOffload" "-XX:+TraceGPUInteraction"
]
)