|
|
|
|
|
|
|
|
|
|
|
|
|
|
| import glob
|
| import os
|
| import runpy
|
| import sys
|
| import warnings
|
| from typing import List, Optional
|
|
|
| import torch
|
| from setuptools import find_packages, setup
|
| from torch.utils.cpp_extension import BuildExtension, CppExtension, CUDA_HOME, CUDAExtension
|
|
|
|
|
| def get_existing_ccbin(nvcc_args: List[str]) -> Optional[str]:
|
| """
|
| Given a list of nvcc arguments, return the compiler if specified.
|
| Note from CUDA doc: Single value options and list options must have
|
| arguments, which must follow the name of the option itself by either
|
| one of more spaces or an equals character.
|
| """
|
| last_arg = None
|
| for arg in reversed(nvcc_args):
|
| if arg == "-ccbin":
|
| return last_arg
|
| if arg.startswith("-ccbin="):
|
| return arg[7:]
|
| last_arg = arg
|
| return None
|
|
|
|
|
| def get_extensions():
|
| no_extension = os.getenv("PYTORCH3D_NO_EXTENSION", "0") == "1"
|
| if no_extension:
|
| msg = "SKIPPING EXTENSION BUILD. PYTORCH3D WILL NOT WORK!"
|
| print(msg, file=sys.stderr)
|
| warnings.warn(msg)
|
| return []
|
|
|
| this_dir = os.path.dirname(os.path.abspath(__file__))
|
| extensions_dir = os.path.join(this_dir, "csrc")
|
| sources = glob.glob(os.path.join(extensions_dir, "**", "*.cpp"), recursive=True)
|
| source_cuda = glob.glob(os.path.join(extensions_dir, "**", "*.cu"), recursive=True)
|
| extension = CppExtension
|
|
|
| extra_compile_args = {"cxx": ["-std=c++14"]}
|
| define_macros = []
|
| include_dirs = [extensions_dir]
|
|
|
| force_cuda = os.getenv("FORCE_CUDA", "0") == "1"
|
| force_no_cuda = os.getenv("PYTORCH3D_FORCE_NO_CUDA", "0") == "1"
|
| if (
|
| not force_no_cuda and torch.cuda.is_available() and CUDA_HOME is not None
|
| ) or force_cuda:
|
| extension = CUDAExtension
|
| sources += source_cuda
|
| define_macros += [("WITH_CUDA", None)]
|
|
|
|
|
|
|
|
|
| define_macros += [("THRUST_IGNORE_CUB_VERSION_CHECK", None)]
|
| cub_home = os.environ.get("CUB_HOME", None)
|
| nvcc_args = [
|
| "-DCUDA_HAS_FP16=1",
|
| "-D__CUDA_NO_HALF_OPERATORS__",
|
| "-D__CUDA_NO_HALF_CONVERSIONS__",
|
| "-D__CUDA_NO_HALF2_OPERATORS__",
|
| ]
|
| if os.name != "nt":
|
| nvcc_args.append("-std=c++14")
|
| if cub_home is None:
|
| prefix = os.environ.get("CONDA_PREFIX", None)
|
| if prefix is not None and os.path.isdir(prefix + "/include/cub"):
|
| cub_home = prefix + "/include"
|
|
|
| if cub_home is None:
|
| warnings.warn(
|
| "The environment variable `CUB_HOME` was not found. "
|
| "NVIDIA CUB is required for compilation and can be downloaded "
|
| "from `https://github.com/NVIDIA/cub/releases`. You can unpack "
|
| "it to a location of your choice and set the environment variable "
|
| "`CUB_HOME` to the folder containing the `CMakeListst.txt` file."
|
| )
|
| else:
|
| include_dirs.append(os.path.realpath(cub_home).replace("\\ ", " "))
|
| nvcc_flags_env = os.getenv("NVCC_FLAGS", "")
|
| if nvcc_flags_env != "":
|
| nvcc_args.extend(nvcc_flags_env.split(" "))
|
|
|
|
|
|
|
|
|
|
|
| if torch.__version__[:4] != "1.7.":
|
| CC = os.environ.get("CC", None)
|
| if CC is not None:
|
| existing_CC = get_existing_ccbin(nvcc_args)
|
| if existing_CC is None:
|
| CC_arg = "-ccbin={}".format(CC)
|
| nvcc_args.append(CC_arg)
|
| elif existing_CC != CC:
|
| msg = f"Inconsistent ccbins: {CC} and {existing_CC}"
|
| raise ValueError(msg)
|
|
|
| extra_compile_args["nvcc"] = nvcc_args
|
|
|
| ext_modules = [
|
| extension(
|
| "_torch3d._C",
|
| sources,
|
| include_dirs=include_dirs,
|
| define_macros=define_macros,
|
| extra_compile_args=extra_compile_args,
|
| )
|
| ]
|
|
|
| return ext_modules
|
|
|
|
|
| '''
|
| Usage:
|
|
|
| python setup.py build_ext --inplace # build extensions locally, do not install (only can be used from the parent directory)
|
|
|
| python setup.py install # build extensions and install (copy) to PATH.
|
| pip install . # ditto but better (e.g., dependency & metadata handling)
|
|
|
| python setup.py develop # build extensions and install (symbolic) to PATH.
|
| pip install -e . # ditto but better (e.g., dependency & metadata handling)
|
|
|
| '''
|
| setup(
|
| name='torch3d',
|
| ext_modules=get_extensions(),
|
| packages=find_packages(),
|
| cmdclass={
|
| 'build_ext': BuildExtension,
|
| }
|
| ) |