-
-
Notifications
You must be signed in to change notification settings - Fork 122
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
Investigate why upsampling tests are so slow #442
Comments
Is there a way to force the complete summary printout? |
I don't know off the top of my head, but there might be. |
Here are the timings on my machine (12 core cpu + 1080Ti). Setting
The nearest neighbour and pixel shuffle tests take longer than the others, because there are several tests against forward mode gradients, which take significantly more time. Removing the grad tests from the pixel shuffle tests e.g. reduces the test time to ca 3s. So I think everything is ok, because probably this is mostly precompilation time. |
That's still a good amount of time given how small the inputs are, especially given the GHA runners are significantly lower powered. I would've expected pixel shuffle in particular to be fast since most of the functions it calls should already be precompiled. Were you able to determine a rough estimate for how much time is precompilation? |
I slammed a couple of
So the question is how to make it compile faster. |
Master, on my machine:
The text was updated successfully, but these errors were encountered: