mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 05:01:25 +00:00
* Add layernorm bwd gamma beta external api * Add groupnorm external api * Add layernorm bwd gamma beta profiler * Add groupnorm bwd gamma beta ckProfiler * Add layernorm & groupnorm bwd gamma beta test * Fix groupnorm bwd gamma beta profiler bug * Layernorm bwd weight client example * Groupnorm bwd weight client example * clang format * Remove useless header * Let inv_std be positive * Rename to num_bytes and move this calculation outside the loop
12 lines
675 B
CMake
12 lines
675 B
CMake
add_executable(client_layernorm2d_bwd_data layernorm2d_bwd_data.cpp)
|
|
target_link_libraries(client_layernorm2d_bwd_data PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm2d_bwd_gamma_beta layernorm2d_bwd_gamma_beta.cpp)
|
|
target_link_libraries(client_layernorm2d_bwd_gamma_beta PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm2d_fwd layernorm2d_fwd.cpp)
|
|
target_link_libraries(client_layernorm2d_fwd PRIVATE composable_kernel::device_other_operations)
|
|
|
|
add_executable(client_layernorm4d_fwd layernorm4d_fwd.cpp)
|
|
target_link_libraries(client_layernorm4d_fwd PRIVATE composable_kernel::device_other_operations)
|