Merge commit '04612c30ceab818cd6c03a3e833a6c6d1a21dafa' into develop

This commit is contained in:
assistant-librarian[bot]
2025-12-08 11:12:53 +00:00
parent 66f05c1fbf
commit e5a3277261
79 changed files with 1608 additions and 232 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()