Commit 6b18f2d1 authored by rusty1s's avatar rusty1s
Browse files

version up

parent 2d253c11
......@@ -7,4 +7,4 @@ SRC_DIR=aten/THC
BUILD_DIR=torch_cluster/_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,7 +2,7 @@ from os import path as osp
from setuptools import setup, find_packages
__version__ = '1.1.0'
__version__ = '1.1.1'
url = 'https://github.com/rusty1s/pytorch_cluster'
install_requires = ['cffi']
......
from .graclus import graclus_cluster
from .grid import grid_cluster
__version__ = '1.1.0'
__version__ = '1.1.1'
__all__ = ['graclus_cluster', 'grid_cluster', '__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