Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
@@ -0,0 +1,7 @@
import torch
print("CUDA:", torch.cuda.is_available())
t = torch.randn(4, 4, device="cuda")
print("GPU tensor:", t.shape)
r = t @ t.T
print("matmul:", r.shape)
print("OK")