"examples/vscode:/vscode.git/clone" did not exist on "ca625f43cce7527b07d56eeac48b8b27c25567f5"
scaled_masked_softmax.py 1.19 KB
Newer Older
1
2
3
4
5
6
7
8
9
from .builder import Builder
from .utils import append_nvcc_threads


class ScaledMaskedSoftmaxBuilder(Builder):
    NAME = "scaled_masked_softmax"
    PREBUILT_IMPORT_PATH = "colossalai._C.scaled_masked_softmax"

    def __init__(self):
10
11
12
        super().__init__(
            name=ScaledMaskedSoftmaxBuilder.NAME, prebuilt_import_path=ScaledMaskedSoftmaxBuilder.PREBUILT_IMPORT_PATH
        )
13
14
15

    # necessary 4 functions
    def sources_files(self):
16
        ret = [self.csrc_abs_path(fname) for fname in ["scaled_masked_softmax.cpp", "scaled_masked_softmax_cuda.cu"]]
17
18
19
        return ret

    def include_dirs(self):
20
        return [self.csrc_abs_path("kernels/include"), self.get_cuda_home_include()]
21
22

    def cxx_flags(self):
23
        return ["-O3"] + self.version_dependent_macros
24
25
26

    def nvcc_flags(self):
        extra_cuda_flags = [
27
            "-std=c++14",
28
            "-std=c++17",
29
30
31
32
            "-U__CUDA_NO_HALF_OPERATORS__",
            "-U__CUDA_NO_HALF_CONVERSIONS__",
            "-U__CUDA_NO_HALF2_OPERATORS__",
            "-DTHRUST_IGNORE_CUB_VERSION_CHECK",
33
        ]
34
        ret = ["-O3", "--use_fast_math"] + self.version_dependent_macros + extra_cuda_flags
35
        return append_nvcc_threads(ret)