-
-
Save shunting314/79d6231702d785650631931c5b447314 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): | |
| v = x[0].item() | |
| y = x + 1 | |
| print(g.pool()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment