-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·122 lines (102 loc) · 3.72 KB
/
setup.py
File metadata and controls
executable file
·122 lines (102 loc) · 3.72 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/env python
import glob
import os
import numpy as np
import torch
from setuptools import setup, Extension, find_packages
# from torch.utils.cpp_extension import CUDA_HOME
# from torch.utils.cpp_extension import CppExtension
# from torch.utils.cpp_extension import CUDAExtension
# from Cython.Build import cythonize
# import platform
# def make_cython_ext(name, module, sources):
# extra_compile_args = None
# if platform.system() != 'Windows':
# extra_compile_args = {
# 'cxx': ['-Wno-unused-function', '-Wno-write-strings']
# }
# extension = Extension(
# '{}.{}'.format(module, name),
# [os.path.join(*module.split('.'), p) for p in sources],
# include_dirs=[np.get_include()],
# language='c++',
# extra_compile_args=extra_compile_args)
# extension, = cythonize(extension)
# return extension
# def make_cuda_ext(name, module, sources):
# return CUDAExtension(
# name='{}.{}'.format(module, name),
# sources=[os.path.join(*module.split('.'), p) for p in sources],
# extra_compile_args={
# 'cxx': [],
# 'nvcc': [
# '-D__CUDA_NO_HALF_OPERATORS__',
# '-D__CUDA_NO_HALF_CONVERSIONS__',
# '-D__CUDA_NO_HALF2_OPERATORS__',
# ]
# })
# def get_extensions():
# this_dir = os.path.dirname(os.path.abspath(__file__))
# extensions_dir = os.path.join(this_dir, "alphaction/csrc")
# main_file = glob.glob(os.path.join(extensions_dir, "*.cpp"))
# source_cpu = glob.glob(os.path.join(extensions_dir, "cpu", "*.cpp"))
# source_cuda = glob.glob(os.path.join(extensions_dir, "cuda", "*.cu"))
# sources = main_file + source_cpu
# extension = CppExtension
# extra_compile_args = {"cxx": []}
# define_macros = []
# if (torch.cuda.is_available() and CUDA_HOME is not None) or os.getenv("FORCE_CUDA", "0") == "1":
# extension = CUDAExtension
# sources += source_cuda
# define_macros += [("WITH_CUDA", None)]
# extra_compile_args["nvcc"] = [
# "-O3",
# "-DCUDA_HAS_FP16=1",
# "-D__CUDA_NO_HALF_OPERATORS__",
# "-D__CUDA_NO_HALF_CONVERSIONS__",
# "-D__CUDA_NO_HALF2_OPERATORS__",
# ]
# sources = [os.path.join(extensions_dir, s) for s in sources]
# include_dirs = [extensions_dir]
# ext_modules = [
# extension(
# "alphaction._custom_cuda_ext",
# sources,
# include_dirs=include_dirs,
# define_macros=define_macros,
# extra_compile_args=extra_compile_args,
# ),
# make_cython_ext(
# name='soft_nms_cpu',
# module='detector.nms',
# sources=['src/soft_nms_cpu.pyx']),
# make_cuda_ext(
# name='nms_cpu',
# module='detector.nms',
# sources=['src/nms_cpu.cpp']),
# make_cuda_ext(
# name='nms_cuda',
# module='detector.nms',
# sources=['src/nms_cuda.cpp', 'src/nms_kernel.cu']),
# ]
# return ext_modules
setup(
name="alphaction",
author="yelantf",
url="https://github.com/MVIG-SJTU/AlphAction",
# ext_modules=get_extensions(),
packages=find_packages(".", exclude=[
"config_files", "demo", "gifs", "tools", "data",
]),
install_requires=[
"tqdm",
"yacs",
"opencv-python",
"tensorboardX",
"SciPy",
"matplotlib",
# "cython-bbox",
"easydict",
],
# cmdclass={"build_ext": torch.utils.cpp_extension.BuildExtension},
)