diff options
| author | KunoiSayami <[email protected]> | 2023-04-19 14:26:52 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-04-19 14:26:52 +0800 |
| commit | 32d06031ceb10e99a85297ce43b17099741ce3bc (patch) | |
| tree | e3db10f5d2112fc9f24528bde18f5719ee678bbb /CMakeLists.txt | |
| parent | 2a1d2fee4fcb7fd39454770ef5548ca4cf94dc76 (diff) | |
feat: Add experimental content
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ac6bf41..6e9a8af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -142,4 +142,12 @@ set_target_properties(expt_0830 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0830 PROPERTIES LINKER_LANGUAGE CUDA) add_executable(normal_skiplist normal_skiplist.cpp) -target_link_libraries(normal_skiplist m stdc++)
\ No newline at end of file +target_link_libraries(normal_skiplist m stdc++) + +add_executable(expt_0406 expt_0406.cu) +target_link_libraries(expt_0406 m stdc++) + +set_target_properties(expt_0406 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0406 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0406 PROPERTIES LINKER_LANGUAGE CUDA)
\ No newline at end of file |
