-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (28 loc) · 818 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup
from torch.utils import cpp_extension
import os
import glob
ext_modules = [
cpp_extension.CppExtension(
"splatting.cpu",
["cpp/splatting.cpp"],
),
]
cublas_include_paths = glob.glob("/usr/local/**/cublas_v2.h", recursive=True)
if len(cublas_include_paths) > 0:
ext_modules.append(
cpp_extension.CUDAExtension(
"splatting.cuda",
["cuda/splatting_cuda.cpp", "cuda/splatting.cu"],
include_dirs=[os.path.dirname(cublas_include_paths[0])],
),
)
setup(
name="splatting",
ext_modules=ext_modules,
cmdclass={"build_ext": cpp_extension.BuildExtension},
install_requires=["torch"],
extras_require={
"dev": ["pytest", "pytest-cov", "pre-commit"]
}, # pip install -e '.[dev]'
)