"src/targets/vscode:/vscode.git/clone" did not exist on "e781c38ab1f1ff253ca015831f00460e784d9309"
CMakeLists.txt 514 Bytes
Newer Older
1
2
3
4
list(APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942)
set(target 0)
foreach(gpu IN LISTS GPU_TARGETS)
 if(gpu IN_LIST gpu_list AND target EQUAL 0)
5
6
7
8
9
10
   if(DTYPES MATCHES "fp16" OR NOT DEFINED DTYPES)
     add_test_executable(test_batched_gemm_reduce_fp16 batched_gemm_reduce_fp16.cpp)
     target_link_libraries(test_batched_gemm_reduce_fp16 PRIVATE utility)
     target_link_libraries(test_batched_gemm_reduce_fp16 PRIVATE device_batched_gemm_reduce_instance)
     set(target 1)
   endif()
11
12
 endif()
endforeach()