mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
10 lines
657 B
CMake
10 lines
657 B
CMake
add_example_executable(example_convnd_fwd_xdl_fp32 convnd_fwd_xdl_fp32.cpp)
|
|
add_example_executable(example_convnd_fwd_xdl_int8 convnd_fwd_xdl_int8.cpp)
|
|
add_example_executable(example_convnd_fwd_xdl_fp16 convnd_fwd_xdl_fp16.cpp)
|
|
# FIXME: re-enable this exampe as test when SWDEV-335738 is fixed
|
|
add_example_executable_no_testing(example_convnd_fwd_xdl_fp64 convnd_fwd_xdl_fp64.cpp)
|
|
target_link_libraries(example_convnd_fwd_xdl_fp64 PRIVATE conv_util)
|
|
target_link_libraries(example_convnd_fwd_xdl_fp32 PRIVATE conv_util)
|
|
target_link_libraries(example_convnd_fwd_xdl_int8 PRIVATE conv_util)
|
|
target_link_libraries(example_convnd_fwd_xdl_fp16 PRIVATE conv_util)
|