cmendezc

NPU examples

import torch
import torch.npu
x = torch.randn(2, 2).npu()
y = torch.randn(2, 2).npu()
z = x.mm(y)
print(z)
\ No newline at end of file