-
Notifications
You must be signed in to change notification settings - Fork 230
/
build_modulated.py
43 lines (36 loc) · 1.17 KB
/
build_modulated.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
import os
import torch
from torch.utils.ffi import create_extension
sources = ['src/modulated_dcn.c']
headers = ['src/modulated_dcn.h']
defines = []
with_cuda = False
extra_objects = []
if torch.cuda.is_available():
print('Including CUDA code.')
sources += ['src/modulated_dcn_cuda.c']
headers += ['src/modulated_dcn_cuda.h']
defines += [('WITH_CUDA', None)]
extra_objects += ['src/cuda/modulated_deform_im2col_cuda.cu.so']
extra_objects += ['src/cuda/deform_psroi_pooling_cuda.cu.so']
with_cuda = True
else:
raise ValueError('CUDA is not available')
extra_compile_args = ['-fopenmp', '-std=c99']
this_file = os.path.dirname(os.path.realpath(__file__))
print(this_file)
sources = [os.path.join(this_file, fname) for fname in sources]
headers = [os.path.join(this_file, fname) for fname in headers]
extra_objects = [os.path.join(this_file, fname) for fname in extra_objects]
ffi = create_extension(
'_ext.modulated_dcn',
headers=headers,
sources=sources,
define_macros=defines,
relative_to=__file__,
with_cuda=with_cuda,
extra_objects=extra_objects,
extra_compile_args=extra_compile_args
)
if __name__ == '__main__':
ffi.build()