Created
February 18, 2026 22:32
-
-
Save mlazos/4d57df4f7b43bb0531100deb7cc51e10 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
| with torch.Stream(device='cuda') as s_cuda: | |
| a = torch.randn(10, 5, device='cuda') | |
| b = torch.randn(5, 10, device='cuda') | |
| c = torch.mm(a, b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment