mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 20:51:23 +00:00
* Conv3d bwd weight client example. * Update year in license * Convolution bwd data 3D fp16/fp32 client example. * Client example for convnd fwd fp16 fp32 * clang-format * Review remarks. * Fix compiler err. * Update data layout to standard one. * Add conv 3d fwd NDHWGC instances * clang-format * Conv3d fwd NDHWGC instances. --------- Co-authored-by: Adam Osewski <aosewski@amd.com> Co-authored-by: zjing14 <zhangjing14@gmail.com>
6 lines
301 B
CMake
6 lines
301 B
CMake
add_executable(client_conv3d_fwd_fp16 conv3d_fwd_fp16.cpp)
|
|
add_executable(client_conv3d_fwd_fp32 conv3d_fwd_fp32.cpp)
|
|
|
|
target_link_libraries(client_conv3d_fwd_fp16 PRIVATE composable_kernel::device_operations)
|
|
target_link_libraries(client_conv3d_fwd_fp32 PRIVATE composable_kernel::device_operations)
|