-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
71 lines (63 loc) · 2.12 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup, find_packages
from typing import List
import os
import torch
from torch.utils.cpp_extension import CUDA_HOME, BuildExtension, CUDAExtension, CppExtension
extra_compile_args = {"cxx": ["-std=c++14"]}
define_macros = []
force_cuda = os.getenv("FORCE_CUDA", "0") == "1"
if (torch.cuda.is_available() and CUDA_HOME is not None) or force_cuda:
extension = CUDAExtension
# sources += source_cuda
define_macros += [("WITH_CUDA", None)]
nvcc_args = [
"-DCUDA_HAS_FP16=1",
"-D__CUDA_NO_HALF_OPERATORS__",
"-D__CUDA_NO_HALF_CONVERSIONS__",
"-D__CUDA_NO_HALF2_OPERATORS__",
]
nvcc_flags_env = os.getenv("NVCC_FLAGS", "")
if nvcc_flags_env != "":
nvcc_args.extend(nvcc_flags_env.split(" "))
# It's better if pytorch can do this by default ..
CC = os.environ.get("CC", None)
if CC is not None:
CC_arg = "-ccbin={}".format(CC)
if CC_arg not in nvcc_args:
if any(arg.startswith("-ccbin") for arg in nvcc_args):
raise ValueError("Inconsistent ccbins")
nvcc_args.append(CC_arg)
extra_compile_args["nvcc"] = nvcc_args
else:
print('Cuda is not available!')
ext_modules = [
CppExtension('DSS._C', [
'DSS/csrc/ext.cpp',
'DSS/csrc/rasterize_points_cpu.cpp',
])
]
include_dirs = torch.utils.cpp_extension.include_paths()
ext_modules += [
CUDAExtension('DSS._C', [
'DSS/csrc/ext.cpp',
'DSS/csrc/rasterize_points.cu',
'DSS/csrc/rasterize_points_backward.cu',
'DSS/csrc/rasterize_points_cpu.cpp',
],
include_dirs=['DSS/csrc'],
define_macros=define_macros,
extra_compile_args=extra_compile_args
)
]
INSTALL_REQUIREMENTS = ['numpy', 'torch', 'plyfile', 'pytorch3d', 'imageio', 'frnn']
setup(
name='DSS',
description='Differentiable Surface Splatter',
author='Yifan Wang, Lixin Xue and Felice Serena',
packages=find_packages(exclude=('tests')),
license='MIT License',
version='2.0',
install_requires=INSTALL_REQUIREMENTS,
ext_modules=ext_modules,
cmdclass={'build_ext': BuildExtension}
)