mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-19 04:19:36 +00:00
* refactor cmake files for the tests
* refactor cmake files for examples
* fix cmake for gemm example
* fix the cmake file for all examples
* add splitting by data types in gemm_splitk instance header
* rename test to reflect only dl instances are used
* clean up CI workspace, update cmake for instances
* change the jenkinsfile syntax
* build all instances except DL on gfx11
* move workspace cleanup after stages
* clean up workspace after every stage
* isolate data types in grouped_conv_fwd header
* isolate dl instances for grouped_conv2d_fwd
* fix syntax
* fix cmake and batchnorm instances
* fix typo
* fix reduction instances
* fix grouped_conv headers
* fix syntax
* replace parsing logic for instances, replace bfp16 with bf16
* fix the client examples build
* clean up DTYPES from instances cmake files
* update the parsing logic in cmake files
* make an exception for reduction kernels
* update few remaining cmake files to handle DTYPES
* fix syntax
* fix cmake conflicts
* replace f8 with fp8 test name
* resolve conflicts for dpp instances
[ROCm/composable_kernel commit: bba085d2b5]
28 lines
1.2 KiB
CMake
28 lines
1.2 KiB
CMake
add_test_executable(test_gemm_fp32 gemm_fp32.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_fp32 PRIVATE utility device_gemm_instance)
|
|
endif()
|
|
add_test_executable(test_gemm_fp16 gemm_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_fp16 PRIVATE utility device_gemm_instance)
|
|
add_library(gemm_standalone_xdl_fp16_instances STATIC
|
|
instance/gemm_f16_nn_instance.cpp
|
|
instance/gemm_f16_nt_instance.cpp
|
|
instance/gemm_f16_tn_instance.cpp
|
|
instance/gemm_wavelet_f16_tn_instance.cpp
|
|
instance/gemm_f16_tt_instance.cpp
|
|
)
|
|
endif()
|
|
add_test_executable(test_gemm_standalone_xdl_fp16 gemm_standalone_xdl_fp16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_standalone_xdl_fp16 PRIVATE gemm_standalone_xdl_fp16_instances utility)
|
|
target_include_directories(test_gemm_standalone_xdl_fp16 PRIVATE instance/)
|
|
endif()
|
|
add_test_executable(test_gemm_bf16 gemm_bf16.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_bf16 PRIVATE utility device_gemm_instance)
|
|
endif()
|
|
add_test_executable(test_gemm_int8 gemm_int8.cpp)
|
|
if(result EQUAL 0)
|
|
target_link_libraries(test_gemm_int8 PRIVATE utility device_gemm_instance)
|
|
endif() |