ck: add tf32 in DTYPES to control instances build(#3317)

[ROCm/composable_kernel commit: 8fec8054b2]
This commit is contained in:
yinglu
2025-12-08 16:24:20 +08:00
committed by GitHub
parent 771f37e4aa
commit fc7547a552
24 changed files with 177 additions and 140 deletions

View File

@@ -65,6 +65,9 @@ function(add_test_executable TEST_NAME)
if((source_name MATCHES "_fp32|_f32") AND NOT "fp32" IN_LIST DTYPES)
set(test 1)
endif()
if((source_name MATCHES "_tf32|_tf32") AND NOT "tf32" IN_LIST DTYPES)
set(test 1)
endif()
if((source_name MATCHES "_fp64|_f64") AND NOT "fp64" IN_LIST DTYPES)
set(test 1)
endif()
@@ -156,6 +159,9 @@ function(add_gtest_executable TEST_NAME)
if((source_name MATCHES "_fp32|_f32") AND NOT "fp32" IN_LIST DTYPES)
set(test 1)
endif()
if((source_name MATCHES "_tf32|_tf32") AND NOT "tf32" IN_LIST DTYPES)
set(test 1)
endif()
if((source_name MATCHES "_fp64|_f64") AND NOT "fp64" IN_LIST DTYPES)
set(test 1)
endif()