Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Apr 30, 2018
1 parent 7b11949 commit 1b96f53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ SRC_DIR=aten/THC
BUILD_DIR=torch_spline_conv/_ext

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 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = '1.0.0'
__version__ = '1.0.1'
url = 'https://github.com/rusty1s/pytorch_spline_conv'

install_requires = ['cffi']
Expand Down
2 changes: 1 addition & 1 deletion torch_spline_conv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from .weighting import SplineWeighting
from .conv import SplineConv

__version__ = '1.0.0'
__version__ = '1.0.1'

__all__ = ['SplineBasis', 'SplineWeighting', 'SplineConv', '__version__']

0 comments on commit 1b96f53

Please sign in to comment.