Skip to content
Permalink
fc48434ff7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (32 sloc) 1.54 KB
file(GLOB test_cases_list *.cpp)
set(independent_cases_list
has_kernel_bundle_core_all_states_ctx_only.cpp
has_kernel_bundle_core_all_states_dev.cpp
has_kernel_bundle_core_atomic64_ctx_only.cpp
has_kernel_bundle_core_atomic64_dev.cpp
has_kernel_bundle_core_fp16_ctx_only.cpp
has_kernel_bundle_core_fp16_dev.cpp
has_kernel_bundle_core_fp64_ctx_only.cpp
has_kernel_bundle_core_fp64_dev.cpp
has_kernel_bundle_core_like_support_reqd_sub_group_size_ctx_only.cpp
has_kernel_bundle_core_like_support_reqd_sub_group_size_dev.cpp
has_kernel_bundle_core_like_unsupport_reqd_sub_group_size_ctx_only.cpp
has_kernel_bundle_core_like_unsupport_reqd_sub_group_size_dev.cpp
has_kernel_bundle_core_reqd_like_support_work_group_size_ctx_only.cpp
has_kernel_bundle_core_reqd_like_support_work_group_size_dev.cpp
has_kernel_bundle_core_reqd_like_unsupport_work_group_size_ctx_only.cpp
has_kernel_bundle_core_reqd_like_unsupport_work_group_size_dev.cpp
has_kernel_bundle_multiple_kernels_ctx_only.cpp
has_kernel_bundle_multiple_kernels_dev.cpp
has_kernel_bundle_zero_kernels_ctx_only_and_ctx_and_dev.cpp
get_kernel_ids_multiple_kernels.cpp
get_kernel_ids_single_kernel.cpp
get_kernel_ids_no_kernels.cpp
get_kernel_bundle_zero_kernels.cpp
get_kernel_bundle_with_kernel_attr.cpp
get_kernel_bundle_without_kernel_attr.cpp
)
list(TRANSFORM independent_cases_list PREPEND "${CMAKE_CURRENT_SOURCE_DIR}/")
list(REMOVE_ITEM test_cases_list ${independent_cases_list})
add_cts_test(${test_cases_list})
add_independent_cts_tests(${independent_cases_list})