icecuber commited on
Commit
758271a
·
verified ·
1 Parent(s): 97c494c

Upload build/torch27-cxx11-cu126-x86_64-linux/first/__init__.py with huggingface_hub

Browse files
build/torch27-cxx11-cu126-x86_64-linux/first/__init__.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import torch
2
+
3
+ def mul2(x: torch.Tensor) -> torch.Tensor:
4
+ return x*2
5
+
6
+ __all__ = ["mul2"]