Commit 1b96f53b authored by rusty1s's avatar rusty1s
Browse files

version up

parent 7b119490
...@@ -7,4 +7,5 @@ SRC_DIR=aten/THC ...@@ -7,4 +7,5 @@ SRC_DIR=aten/THC
BUILD_DIR=torch_spline_conv/_ext BUILD_DIR=torch_spline_conv/_ext
mkdir -p "$BUILD_DIR" mkdir -p "$BUILD_DIR"
$(which nvcc) "-I$TORCH/lib/include" "-I$TORCH/lib/include/TH" "-I$TORCH/lib/include/THC" "-I$SRC_DIR" -c "$SRC_DIR/THC.cu" -o "$BUILD_DIR/THC.o" --compiler-options '-fPIC' -std=c++11 $(which nvcc) "-I$TORCH/lib/include" "-I$TORCH/lib/include/TH" "-I$TORCH/lib/include/THC" "-I$SRC_DIR" -c "$SRC_DIR/THC.cu" -o "$BUILD_DIR/THC.so" --compiler-options '-fPIC' -std=c++11
...@@ -2,7 +2,7 @@ from os import path as osp ...@@ -2,7 +2,7 @@ from os import path as osp
from setuptools import setup, find_packages from setuptools import setup, find_packages
__version__ = '1.0.0' __version__ = '1.0.1'
url = 'https://github.com/rusty1s/pytorch_spline_conv' url = 'https://github.com/rusty1s/pytorch_spline_conv'
install_requires = ['cffi'] install_requires = ['cffi']
......
...@@ -2,6 +2,6 @@ from .basis import SplineBasis ...@@ -2,6 +2,6 @@ from .basis import SplineBasis
from .weighting import SplineWeighting from .weighting import SplineWeighting
from .conv import SplineConv from .conv import SplineConv
__version__ = '1.0.0' __version__ = '1.0.1'
__all__ = ['SplineBasis', 'SplineWeighting', 'SplineConv', '__version__'] __all__ = ['SplineBasis', 'SplineWeighting', 'SplineConv', '__version__']
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment