Renamed the generated python module.
authorFrancois Fleuret <francois@fleuret.org>
Wed, 14 Jun 2017 21:02:17 +0000 (23:02 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Wed, 14 Jun 2017 21:02:17 +0000 (23:02 +0200)
build.py
test-svrt.py

index ef0b46d..da18d39 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -27,7 +27,7 @@ from torch.utils.ffi import create_extension
 abs_path = os.path.dirname(os.path.abspath(__file__))
 
 ffi = create_extension(
-    '_ext.svrt',
+    'svrt',
     headers = [ 'svrt.h' ],
     sources = [ 'svrt.c' ],
     extra_objects = [ abs_path + '/libsvrt.so' ],
index cd98f21..5c16069 100755 (executable)
@@ -34,7 +34,7 @@ from torch.nn import functional as fn
 
 from torchvision import datasets, transforms, utils
 
-from _ext import svrt
+import svrt
 
 labels = torch.LongTensor(12).zero_()
 labels.narrow(0, 0, labels.size(0)//2).fill_(1)