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
In the latest develop version of torch, automatic mixed precision has just been added. See this file and the unit test here to see how to use it
The text was updated successfully, but these errors were encountered:
Here is a simple vignette describing how this works in torch:
https://torch.mlverse.org/docs/dev/articles/amp.html
Sorry, something went wrong.
Benchmark results for RTX 3090
system.time({run(autocast = FALSE, scale = FALSE)}) user system elapsed 0.75 0.09 1.88 system.time({run(autocast = TRUE, scale = FALSE)}) user system elapsed 0.58 0.05 1.54 system.time({run(autocast = TRUE, scale = TRUE)}) user system elapsed 0.38 0.11 1.64
No branches or pull requests
In the latest develop version of torch, automatic mixed precision has just been added. See this file and the unit test here to see how to use it
The text was updated successfully, but these errors were encountered: