-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.03 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
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
import glob
import os
# build aabb
_ext_src_root = "aabb"
_ext_sources = glob.glob("{}/src/*.cpp".format(_ext_src_root)) + glob.glob(
"{}/src/*.cu".format(_ext_src_root)
)
_ext_headers = glob.glob("{}/include/*".format(_ext_src_root))
# what is the meaning of each parameter?
_ext_headers_path = os.getcwd() + "/" + _ext_src_root + "/include"
setup(
name='aabb',
ext_modules=[
CUDAExtension(
name='aabb._ext',
sources=_ext_sources,
extra_compile_args={
"cxx": ["-O2", "-I{}".format(_ext_headers_path)],
"nvcc": ["-O2", "-I{}".format(_ext_headers_path)],
},
extra_link_args = ["-fopenmp"],
)
],
cmdclass={
'build_ext': BuildExtension
},
)