-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
82 lines (69 loc) · 2.65 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
72
73
74
75
76
77
78
79
80
81
82
from setuptools import setup, find_namespace_packages
import versioneer
# from pathlib import Path
# from torch.utils.cpp_extension import CUDA_HOME
# from torch.utils.cpp_extension import CppExtension
# from torch.utils.cpp_extension import CUDAExtension
# def get_extensions():
# extensions_dir = Path(__file__).parent.joinpath('strix/models/rcnn/csrc')
# main_file = list(extensions_dir.glob("*.cpp"))
# source_cpu = list((extensions_dir/"cpu").glob("*.cpp"))
# source_cuda = list((extensions_dir/"cuda").glob("*.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"] = [
# "-DCUDA_HAS_FP16=1",
# "-D__CUDA_NO_HALF_OPERATORS__",
# "-D__CUDA_NO_HALF_CONVERSIONS__",
# "-D__CUDA_NO_HALF2_OPERATORS__",
# ]
# sources = [ str(s.resolve()) for s in sources ]
# include_dirs = [str(extensions_dir)]
# ext_modules = [
# extension(
# "strix.models.rcnn._C",
# sources,
# include_dirs=include_dirs,
# define_macros=define_macros,
# extra_compile_args=extra_compile_args,
# )
# ]
# return ext_modules
def get_cmds():
cmds = versioneer.get_cmdclass()
return cmds
# cmds.update({"build_ext": BuildExtension.with_options(no_python_abi_suffix=True)})
setup(
name="strix",
packages=find_namespace_packages(include=["strix", "strix.*"]),
version=versioneer.get_version(),
description="Medical Deep Learning Platform",
author="Chenglong Wang",
author_email="[email protected]",
license="Apache License Version 2.0, January 2004",
entry_points={
"console_scripts": [
"strix-train = strix.main_entry:train",
"strix-train-from-cfg = strix.main_entry:train_cfg",
"strix-train-and-test = strix.main_entry:train_and_test",
"strix-test-from-cfg = strix.main_entry:test_cfg",
"strix-nni-search = strix.nni_search:nni_search",
"strix-check-data = strix.data_checker:check_data",
"strix-gradcam-from-cfg = strix.interpreter:gradcam",
],
},
# ext_modules=get_extensions(),
cmdclass=get_cmds(),
keywords=[
"deep learning",
"medical image classification",
"medical image analysis",
"medical image segmentation",
],
)