-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
91 lines (77 loc) · 2.86 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
83
84
85
86
87
88
89
90
91
# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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 subprocess
import warnings
from typing import List
from setuptools import setup
from torch.utils import cpp_extension
def get_compiler():
try:
# Try to get the compiler path from the CC environment variable
# If not set, it will default to gcc (which could be symlinked to clang or g++)
compiler = subprocess.check_output(["gcc", "--version"], universal_newlines=True) # noqa: S603, S607
if "clang" in compiler:
return "clang"
elif "g++" in compiler or "gcc" in compiler:
return "gnu"
else:
return "unknown"
except Exception as e:
print(f"Error detecting compiler: {e}")
return "unknown"
compiler_type = get_compiler()
extra_compile_args: List[str] = ["-std=c++20"]
if compiler_type == "clang":
print("Detected Clang compiler.")
# Additional settings or flags specific to Clang can be added here
extra_compile_args += ["-Wno-error=c++11-narrowing", "-Wno-c++11-narrowing"]
elif compiler_type == "gnu":
print("Detected GNU compiler.")
# Additional settings or flags specific to G++ can be added here
else:
print("Could not detect compiler or unknown compiler detected.")
src_files = [
"earth2grid/csrc/healpix_bare_wrapper.cpp",
]
cuda_src_files = [
"earth2grid/csrc/healpixpad/healpixpad_cuda.cpp",
"earth2grid/csrc/healpixpad/healpixpad_cuda_fwd.cu",
"earth2grid/csrc/healpixpad/healpixpad_cuda_bwd.cu",
]
ext_modules = [
cpp_extension.CppExtension(
'earth2grid._healpix_bare',
src_files,
extra_compile_args=extra_compile_args,
include_dirs=[os.path.abspath("earth2grid/csrc"), os.path.abspath("earth2grid/third_party/healpix_bare")],
),
]
try:
from torch.utils.cpp_extension import CUDAExtension
ext_modules.append(
CUDAExtension(
name='healpixpad_cuda',
sources=cuda_src_files,
extra_compile_args={'nvcc': ['-O2']},
),
)
except (ImportError, OSError):
warnings.warn("Cuda extensions for torch not found, skipping cuda healpix padding module")
setup(
name='earth2grid',
ext_modules=ext_modules,
cmdclass={'build_ext': cpp_extension.BuildExtension},
)