diff options
| author | KunoiSayami <[email protected]> | 2023-05-27 22:55:44 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-05-27 22:55:44 +0800 |
| commit | 74a5230d639686b71d0fb0fb57ff246913c15c3e (patch) | |
| tree | 65ba7aa85c33a4beea105cb15a0c12ddc6e3c227 /CMakeLists.txt | |
| parent | be0483ef4b6935324f85f124da8f4c1b93e918f6 (diff) | |
feat(exp): Add expt_0525.cu
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 118786c..4553b8c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -222,6 +222,7 @@ set_target_properties(expt_0517 PROPERTIES set_target_properties(expt_0517 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0517 PROPERTIES LINKER_LANGUAGE CUDA) + add_executable(expt_0520 expt_0520.cu skiplistcustom.cuh read_helper.h) target_link_libraries(expt_0520 m stdc++) @@ -230,6 +231,11 @@ set_target_properties(expt_0520 PROPERTIES set_target_properties(expt_0520 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0520 PROPERTIES LINKER_LANGUAGE CUDA) +add_executable(expt_0525 expt_0525.cu read_helper.h) +target_link_libraries(expt_0525 m stdc++) - +set_target_properties(expt_0525 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0525 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0525 PROPERTIES LINKER_LANGUAGE CUDA) |
