icecuber commited on
Commit
29cd445
·
verified ·
1 Parent(s): 4aab711

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

Browse files
build/torch27-cxx11-cu126-x86_64-linux/kernel_test/__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"]