Skip to content
New issue

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

Expected performance #336

Closed
dfdx opened this issue Sep 11, 2019 · 2 comments
Closed

Expected performance #336

dfdx opened this issue Sep 11, 2019 · 2 comments

Comments

@dfdx
Copy link

dfdx commented Sep 11, 2019

Recently I've rewritten Yota's tracer from Cassette to JuliaInterpreter which I found more flexible and much easier to debug. However, the cost of this move is extreme slowdown - a simple neural network which usually takes ~1 second now takes almost 10 minutes in tracer, and most of this time is due to JuliaInterpreter (I can provide exact code and timings if needed).

I see that a lot of work is being done to improve the situation, but in the end what slowdown should we expect? Is it 5x, 10x or 100x compared to runtime of normal call (including compilation time to make it fair)?

@KristofferC
Copy link
Member

We are at a point where the current strategy doesn't have any real low hanging fruits left (at least not at the order of magnitude level). More drastic things like #309 will likely improve the situation but it is not clear by how much and if (or at all) that will ever be implemented.

@dfdx
Copy link
Author

dfdx commented Sep 11, 2019

Got it, thanks!
Just for my own reference in future, here's a simple snippet to test my use case:

using JuliaInterpreter
using BenchmarkTools

linear(W, b, x) = W * x .+ b
relu(x) = max.(x, 0)
net(W1, b1, W2, b2, W3, b3, x) = linear(W3, b3, linear(W2, b2, linear(W1, b1, x)))
W = rand(100, 100)
b = rand(100)

@btime net(W, b, W, b, W, b, x)
#  225.147 μs (12 allocations: 469.22 KiB)

@btime @interpret net(W, b, W, b, W, b, x)
  16.585 s (46406343 allocations: 1.59 GiB)

@dfdx dfdx closed this as completed Sep 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants