-
-
Save shunting314/905e2f23bf363e576c219c237e07d182 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import torch | |
| x = torch.randn(1024, device="cuda") | |
| g = torch.cuda.CUDAGraph() | |
| with torch.cuda.graph(g): | |
| # print(x) | |
| y = x + 1 | |
| print(g.pool()) | |
| print(torch.cuda.memory_snapshot()) | |
| breakpoint() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment