CMakeLists.txt 411 Bytes
Newer Older
1
2
if(GPU_TARGETS MATCHES "gfx908" OR GPU_TARGETS MATCHES "gfx90a" OR GPU_TARGETS MATCHES "gfx940")
   add_custom_target(test_batched_gemm_gemm)
Anthony Chang's avatar
Anthony Chang committed
3

4
5
6
7
   add_gtest_executable(test_batched_gemm_gemm_fp16 test_batched_gemm_gemm_fp16.cpp)
   target_link_libraries(test_batched_gemm_gemm_fp16 PRIVATE utility device_batched_gemm_gemm_instance)
   add_dependencies(test_batched_gemm_gemm test_batched_gemm_gemm_fp16)
endif()