"tests/vscode:/vscode.git/clone" did not exist on "a936f9d9a680ff42a13a6b694fe4fba43d850fc1"
Commit a7f4e460 authored by Vijay Korthikanti's avatar Vijay Korthikanti
Browse files

build_directory argument

parent 37d77ca0
...@@ -51,6 +51,7 @@ def load_scaled_upper_triang_masked_softmax_fusion_kernel(): ...@@ -51,6 +51,7 @@ def load_scaled_upper_triang_masked_softmax_fusion_kernel():
name='scaled_upper_triang_masked_softmax_cuda', name='scaled_upper_triang_masked_softmax_cuda',
sources=[srcpath / 'scaled_upper_triang_masked_softmax.cpp', sources=[srcpath / 'scaled_upper_triang_masked_softmax.cpp',
srcpath / 'scaled_upper_triang_masked_softmax_cuda.cu'], srcpath / 'scaled_upper_triang_masked_softmax_cuda.cu'],
build_directory=srcpath,
extra_cflags=['-O3',], extra_cflags=['-O3',],
extra_cuda_cflags=['-O3', extra_cuda_cflags=['-O3',
'-gencode', 'arch=compute_70,code=sm_70', '-gencode', 'arch=compute_70,code=sm_70',
...@@ -75,6 +76,7 @@ def load_scaled_masked_softmax_fusion_kernel(): ...@@ -75,6 +76,7 @@ def load_scaled_masked_softmax_fusion_kernel():
name='scaled_masked_softmax_cuda', name='scaled_masked_softmax_cuda',
sources=[srcpath / 'scaled_masked_softmax.cpp', sources=[srcpath / 'scaled_masked_softmax.cpp',
srcpath / 'scaled_masked_softmax_cuda.cu'], srcpath / 'scaled_masked_softmax_cuda.cu'],
build_directory=srcpath,
extra_cflags=['-O3',], extra_cflags=['-O3',],
extra_cuda_cflags=['-O3', extra_cuda_cflags=['-O3',
'-gencode', 'arch=compute_70,code=sm_70', '-gencode', 'arch=compute_70,code=sm_70',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment