Skip to content

Instantly share code, notes, and snippets.

Created April 16, 2012 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2397842 to your computer and use it in GitHub Desktop.
Save anonymous/2397842 to your computer and use it in GitHub Desktop.
(def xs (long-array (range 1000000)))
(def ys (long-array (range 1000000)))
(defn m [xs ys]
(let [z 3]
(loop [i (- (count xs) 1)]
(aset #^longs ys i (* z (aget #^longs xs i)))
(cond (> i 0)
(recur (unchecked-dec i))
)
)
)
)
(report-result (bench (m xs ys)) :verbose)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment