mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 12:59:49 +00:00
16 lines
726 B
CMake
16 lines
726 B
CMake
if((DTYPES MATCHES "fp16") OR NOT DEFINED DTYPES)
|
|
add_executable(client_conv3d_fwd_fp16 conv3d_fwd_fp16.cpp)
|
|
target_link_libraries(client_conv3d_fwd_fp16 PRIVATE composable_kernel::device_conv_operations)
|
|
|
|
endif()
|
|
|
|
if((DTYPES MATCHES "fp8") OR (NOT DEFINED DTYPES AND GPU_TARGETS MATCHES "gfx94"))
|
|
add_executable(client_conv3d_fwd_fp16_comp_fp8 conv3d_fwd_fp16_comp_fp8.cpp)
|
|
target_link_libraries(client_conv3d_fwd_fp16_comp_fp8 PRIVATE composable_kernel::device_conv_operations)
|
|
endif()
|
|
|
|
if((DTYPES MATCHES "fp32") OR NOT DEFINED DTYPES)
|
|
add_executable(client_conv3d_fwd_fp32 conv3d_fwd_fp32.cpp)
|
|
target_link_libraries(client_conv3d_fwd_fp32 PRIVATE composable_kernel::device_conv_operations)
|
|
endif()
|