Add gemm_shuffle host api (#71)

* [What]
1. Add DeviceGemmXdl_C_Shuffle
2. Revise example of gemm_xdl
[Why] Prepare to add shuffle version of D = alpha * (A * B) + beta * C
[How] Imitate DeviceGemmXdl and device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp

[ROCm/composable_kernel commit: 4d40b1974e]
This commit is contained in:
rocking5566
2022-01-21 14:31:17 +08:00
committed by GitHub
parent f4e18d16ad
commit 268965e555
3 changed files with 514 additions and 8 deletions

View File

@@ -0,0 +1,2 @@
find . -name deps -prune -o -name build -prune -o -iname '*.h' -o -iname '*.hpp' -o -iname '*.cpp' -o -iname '*.h.in' -o -iname '*.hpp.in' -o -iname '*.cpp.in' -o -iname '*.cl' -o -iname '*.cuh' -o -iname '*.cu' | xargs -n 1 -P 16 -I{} -t sh -c 'clang-format-10 -i -style=file {}'