setup.py 2.04 KB
Newer Older
zhe chen's avatar
zhe chen committed
1
2
3
4
5
6
7
# --------------------------------------------------------
# InternImage
# Copyright (c) 2022 OpenGVLab
# Licensed under The MIT License [see LICENSE for details]
# --------------------------------------------------------

import glob
zhe chen's avatar
zhe chen committed
8
import os
zhe chen's avatar
zhe chen committed
9
10

import torch
zhe chen's avatar
zhe chen committed
11
12
from setuptools import find_packages, setup
from torch.utils.cpp_extension import CUDA_HOME, CppExtension, CUDAExtension
zhe chen's avatar
zhe chen committed
13

zhe chen's avatar
zhe chen committed
14
requirements = ['torch', 'torchvision']
zhe chen's avatar
zhe chen committed
15
16
17
18


def get_extensions():
    this_dir = os.path.dirname(os.path.abspath(__file__))
zhe chen's avatar
zhe chen committed
19
    extensions_dir = os.path.join(this_dir, 'src')
zhe chen's avatar
zhe chen committed
20

zhe chen's avatar
zhe chen committed
21
22
23
    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'))
zhe chen's avatar
zhe chen committed
24
25
26

    sources = main_file + source_cpu
    extension = CppExtension
zhe chen's avatar
zhe chen committed
27
    extra_compile_args = {'cxx': []}
zhe chen's avatar
zhe chen committed
28
29
30
31
32
    define_macros = []

    if torch.cuda.is_available() and CUDA_HOME is not None:
        extension = CUDAExtension
        sources += source_cuda
zhe chen's avatar
zhe chen committed
33
34
        define_macros += [('WITH_CUDA', None)]
        extra_compile_args['nvcc'] = [
zhe chen's avatar
zhe chen committed
35
36
37
38
39
40
41
42
43
44
45
46
            # "-DCUDA_HAS_FP16=1",
            # "-D__CUDA_NO_HALF_OPERATORS__",
            # "-D__CUDA_NO_HALF_CONVERSIONS__",
            # "-D__CUDA_NO_HALF2_OPERATORS__",
        ]
    else:
        raise NotImplementedError('Cuda is not availabel')

    sources = [os.path.join(extensions_dir, s) for s in sources]
    include_dirs = [extensions_dir]
    ext_modules = [
        extension(
zhe chen's avatar
zhe chen committed
47
            'DCNv3',
zhe chen's avatar
zhe chen committed
48
49
50
51
52
53
54
55
56
57
            sources,
            include_dirs=include_dirs,
            define_macros=define_macros,
            extra_compile_args=extra_compile_args,
        )
    ]
    return ext_modules


setup(
zhe chen's avatar
zhe chen committed
58
59
60
61
    name='DCNv3',
    version='1.0',
    author='InternImage',
    url='https://github.com/OpenGVLab/InternImage',
zhe chen's avatar
zhe chen committed
62
    description=
zhe chen's avatar
zhe chen committed
63
    'PyTorch Wrapper for CUDA Functions of DCNv3',
zhe chen's avatar
zhe chen committed
64
    packages=find_packages(exclude=(
zhe chen's avatar
zhe chen committed
65
66
        'configs',
        'tests',
zhe chen's avatar
zhe chen committed
67
68
    )),
    ext_modules=get_extensions(),
zhe chen's avatar
zhe chen committed
69
    cmdclass={'build_ext': torch.utils.cpp_extension.BuildExtension},
zhe chen's avatar
zhe chen committed
70
)