setup.py 2.51 KB
Newer Older
facebook-github-bot's avatar
facebook-github-bot committed
1
2
3
4
5
6
7
8
9
# ------------------------------------------------------------------------------------------------
# Deformable DETR
# Copyright (c) 2020 SenseTime. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 [see LICENSE for details]
# ------------------------------------------------------------------------------------------------
# Modified from https://github.com/chengdazhi/Deformable-Convolution-V2-PyTorch/tree/pytorch_1.0.0
# ------------------------------------------------------------------------------------------------

import glob
Yanghan Wang's avatar
Yanghan Wang committed
10
import os
facebook-github-bot's avatar
facebook-github-bot committed
11
12

import torch
13
14
from setuptools import find_packages, setup
from torch.utils.cpp_extension import CppExtension, CUDA_HOME, CUDAExtension
facebook-github-bot's avatar
facebook-github-bot committed
15
16
17

requirements = ["torch", "torchvision"]

Yanghan Wang's avatar
Yanghan Wang committed
18

facebook-github-bot's avatar
facebook-github-bot committed
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
def get_extensions():
    this_dir = os.path.dirname(os.path.abspath(__file__))
    extensions_dir = os.path.join(this_dir, "detr/src")
    print(f"extensions_dir: {extensions_dir}")

    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"))

    print(f"main_file: {main_file}")
    print(f"source_cpu: {source_cpu}")
    print(f"source_cuda: {source_cuda}")

    sources = main_file + source_cpu
    extension = CppExtension
    extra_compile_args = {"cxx": []}
    define_macros = []

    if torch.cuda.is_available() and CUDA_HOME is not None:
        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__",
        ]
    else:
Yanghan Wang's avatar
Yanghan Wang committed
48
        raise NotImplementedError("Cuda is not availabel")
facebook-github-bot's avatar
facebook-github-bot committed
49
50
51
52
53
54
55
56
57
58
59
60
61
62

    sources = [os.path.join(extensions_dir, s) for s in sources]
    include_dirs = [extensions_dir]
    ext_modules = [
        extension(
            "detr._C",
            sources,
            include_dirs=include_dirs,
            define_macros=define_macros,
            extra_compile_args=extra_compile_args,
        )
    ]
    return ext_modules

Yanghan Wang's avatar
Yanghan Wang committed
63
64

if __name__ == "__main__":
facebook-github-bot's avatar
facebook-github-bot committed
65
66
67
    setup(
        name="detr",
        url="https://github.com/facebookresearch/d2go/detr",
Yanghan Wang's avatar
Yanghan Wang committed
68
        license="Apache-2.0",
facebook-github-bot's avatar
facebook-github-bot committed
69
        packages=find_packages(exclude=["test_all.py"]),
Yanghan Wang's avatar
Yanghan Wang committed
70
        package_data={"detr": ["LICENSE"]},
facebook-github-bot's avatar
facebook-github-bot committed
71
72
73
        ext_modules=get_extensions(),
        cmdclass={"build_ext": torch.utils.cpp_extension.BuildExtension},
    )