From 3ebb5c1d4bb4b05ba21e4ceda0e1603d05dbc171 Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Thu, 18 Aug 2022 17:31:14 +0800 Subject: feat: Add vaild_sort.cpp Signed-off-by: KunoiSayami --- CMakeLists.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bc1eac..9d72a91 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -100,10 +100,22 @@ target_link_libraries(expt_0802 m stdc++) add_executable(expt_0804 expt_0804.cu) -#set_target_properties(expt_0804 PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(expt_0804 m stdc++) set_target_properties(expt_0804 PROPERTIES CUDA_SEPARABLE_COMPILATION ON) set_target_properties(expt_0804 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0804 PROPERTIES LINKER_LANGUAGE CUDA) + + +add_executable(expt_0809 expt_0809.cu) +target_link_libraries(expt_0809 m stdc++) + +set_target_properties(expt_0809 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0809 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0809 PROPERTIES LINKER_LANGUAGE CUDA) + + +add_executable(valid_sort valid_sort_new.cpp) +target_link_libraries(valid_sort m stdc++) \ No newline at end of file -- cgit v1.3.1