mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-15 14:02:58 +00:00
Improve pytorch unit test (#2290)
This commit is contained in:
@@ -3,3 +3,10 @@
|
|||||||
import torch
|
import torch
|
||||||
|
|
||||||
print(torch.tensor([[1.0, 4.0, 7.0], [4.0, 9.0, 11.0]]))
|
print(torch.tensor([[1.0, 4.0, 7.0], [4.0, 9.0, 11.0]]))
|
||||||
|
|
||||||
|
# Check if GPU is available
|
||||||
|
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
||||||
|
print(f"Using device: {device}")
|
||||||
|
# Create large tensors
|
||||||
|
size = 10000
|
||||||
|
torch.randn(size, size, device=device)
|
||||||
|
Reference in New Issue
Block a user