diff options
| author | KunoiSayami <[email protected]> | 2023-05-11 01:47:05 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-05-11 01:47:18 +0800 |
| commit | a0476481fdd1e0e97f9ca888d494257a83ba56cc (patch) | |
| tree | c10f0eabd3714b254fd8d7c5110e50fb6322011d /CMakeLists.txt | |
| parent | c748e1ed7c9693931ae9ee61cf7c45aee2305728 (diff) | |
feat(exp): Add new experimental for save memory and test
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6389a30..4f66661 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -185,4 +185,13 @@ target_link_libraries(expt_0503 m stdc++) set_target_properties(expt_0503 PROPERTIES CUDA_SEPARABLE_COMPILATION ON) set_target_properties(expt_0503 PROPERTIES CUDA_ARCHITECTURES "75") -set_target_properties(expt_0503 PROPERTIES LINKER_LANGUAGE CUDA)
\ No newline at end of file +set_target_properties(expt_0503 PROPERTIES LINKER_LANGUAGE CUDA) + + +add_executable(expt_0510 expt_0510.cu) +target_link_libraries(expt_0510 m stdc++) + +set_target_properties(expt_0510 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0510 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0510 PROPERTIES LINKER_LANGUAGE CUDA)
\ No newline at end of file |
