mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
959 B
30 lines
959 B
10 months ago
|
from ..cuda_extension import _CudaExtension
|
||
|
from ..utils import append_nvcc_threads, get_cuda_cc_flag
|
||
2 years ago
|
|
||
|
|
||
10 months ago
|
class MoeCudaExtension(_CudaExtension):
|
||
2 years ago
|
def __init__(self):
|
||
10 months ago
|
super().__init__(name="moe_cuda")
|
||
2 years ago
|
|
||
|
def include_dirs(self):
|
||
10 months ago
|
ret = [self.csrc_abs_path("cuda/include"), self.get_cuda_home_include()]
|
||
2 years ago
|
return ret
|
||
2 years ago
|
|
||
|
def sources_files(self):
|
||
10 months ago
|
ret = [self.csrc_abs_path(fname) for fname in ["cuda/moe_cuda.cpp", "cuda/moe_cuda_kernel.cu"]]
|
||
2 years ago
|
return ret
|
||
2 years ago
|
|
||
|
def cxx_flags(self):
|
||
1 year ago
|
return ["-O3"] + self.version_dependent_macros
|
||
2 years ago
|
|
||
|
def nvcc_flags(self):
|
||
|
extra_cuda_flags = [
|
||
1 year ago
|
"-U__CUDA_NO_HALF_OPERATORS__",
|
||
|
"-U__CUDA_NO_HALF_CONVERSIONS__",
|
||
|
"--expt-relaxed-constexpr",
|
||
|
"--expt-extended-lambda",
|
||
2 years ago
|
]
|
||
|
extra_cuda_flags.extend(get_cuda_cc_flag())
|
||
1 year ago
|
ret = ["-O3", "--use_fast_math"] + extra_cuda_flags
|
||
2 years ago
|
return append_nvcc_threads(ret)
|