| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import os
- import glob
- from os import path
- import torch
- from setuptools import setup, find_packages
- from codecs import open
- from torch.utils.cpp_extension import CUDA_HOME
- from torch.utils.cpp_extension import CppExtension
- from torch.utils.cpp_extension import CUDAExtension
- here = path.abspath(path.dirname(__file__))
- def get_extensions():
- this_dir = os.path.dirname(os.path.abspath(__file__))
- extensions_dir = os.path.join(this_dir, "effdet", "csrc", "nms")
- 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 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__",
- ]
- sources = [os.path.join(extensions_dir, s) for s in sources]
- include_dirs = [extensions_dir]
- ext_modules = [
- extension(
- "effdet_ext._C",
- sources,
- include_dirs=include_dirs,
- define_macros=define_macros,
- extra_compile_args=extra_compile_args,
- ),
- CUDAExtension('focal_loss_cuda', [
- 'effdet/csrc/focal_loss/focal_loss_cuda.cpp',
- 'effdet/csrc/focal_loss/focal_loss_cuda_kernel.cu',
- ],
- extra_compile_args={
- 'cxx': ['-O3', ],
- 'nvcc':['-O3', '-lineinfo', '-res-usage', '--use_fast_math', '--ftz=false']
- })
- ]
- return ext_modules
- setup(
- name='effdet',
- version="0.4.1",
- description='EfficientDet for PyTorch',
- packages=find_packages(exclude=['data']),
- ext_modules=get_extensions(),
- cmdclass={"build_ext": torch.utils.cpp_extension.BuildExtension},
- )
|