mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 13:41:24 +00:00
* fix: fix bug in print tile window when printing bf8/fp8 tiles * test(print_tile_window_range): add unit tests to maintain function integrity * fix: fp8 numerical mismatch error on gfx950 by adding DCK_TILE_USE_OCP_FP8
15 lines
806 B
CMake
15 lines
806 B
CMake
# Print utility tests
|
|
add_gtest_executable(test_print_sequence test_print_sequence.cpp)
|
|
add_gtest_executable(test_print_array test_print_array.cpp)
|
|
add_gtest_executable(test_print_tuple test_print_tuple.cpp)
|
|
add_gtest_executable(test_print_coordinate_transform test_print_coordinate_transform.cpp)
|
|
add_gtest_executable(test_print_static_encoding_pattern test_print_static_encoding_pattern.cpp)
|
|
add_gtest_executable(test_print_buffer_view test_print_buffer_view.cpp)
|
|
add_gtest_executable(test_print_basic_types test_print_basic_types.cpp)
|
|
add_gtest_executable(test_print_tile_window test_print_tile_window.cpp)
|
|
|
|
# Apply OCP FP8 flag for tile_window test to ensure host/device FP8 format consistency
|
|
if(CK_USE_OCP_FP8)
|
|
target_compile_options(test_print_tile_window PRIVATE -DCK_TILE_USE_OCP_FP8)
|
|
endif()
|