We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This should give a speedup for the following case:
$ tmp/master "(time (loop [val 0 cnt 1000000] (let [f (fn [_])] (f 1)) (if (pos? cnt) (recur (inc val) (dec cnt)) val)))" "Elapsed time: 1352.282812 msecs" 1000000
$ tmp/unroll-local-sym-call "(time (loop [val 0 cnt 1000000] (let [f (fn [_])] (f 1)) (if (pos? cnt) (recur (inc val) (dec cnt)) val)))" "Elapsed time: 1253.399457 msecs" 1000000
The text was updated successfully, but these errors were encountered:
[#502] Unroll local binding calls
42bad0f
[#502] Unroll more
ce3eb8b
No branches or pull requests
This should give a speedup for the following case:
The text was updated successfully, but these errors were encountered: