More optimizations
This commit is contained in:
parent
aacc5c4811
commit
73ec6da56a
3 changed files with 5 additions and 4 deletions
|
|
@ -18,7 +18,8 @@
|
|||
[org.clojure/tools.cli "0.4.2"]
|
||||
[org.clojure/data.csv "0.1.4"]
|
||||
[cheshire "5.9.0"]]
|
||||
:profiles {:test {:dependencies [[clj-commons/conch "0.9.2"]]}
|
||||
:profiles {:test {:dependencies [[clj-commons/conch "0.9.2"]
|
||||
[com.clojure-goes-fast/clj-async-profiler "0.4.0"]]}
|
||||
:uberjar {:global-vars {*assert* false}
|
||||
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
|
||||
"-Dclojure.spec.skip-macros=true"]
|
||||
|
|
|
|||
2
sci
2
sci
|
|
@ -1 +1 @@
|
|||
Subproject commit 873645b1af5fb6db0aa9092ce6df49ad039d6e13
|
||||
Subproject commit 33bc0b0a14d3f9d95ad9ecf9f1b29e95527153a3
|
||||
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
;; clojure -A:profile -e "(prn (loop [val 0 cnt 1000000] (if (pos? cnt) (recur (inc val) (dec cnt)) val)))"
|
||||
|
||||
#_(require '[clj-async-profiler.core :as prof])
|
||||
(require '[clj-async-profiler.core :as prof])
|
||||
|
||||
(defn -main [& options]
|
||||
#_(prof/profile (apply main/main options))
|
||||
(prof/profile (apply main/main options))
|
||||
(shutdown-agents))
|
||||
|
|
|
|||
Loading…
Reference in a new issue