mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-11 08:50:17 +00:00
* simplify code * compiled the code * Simplified example and codegen for mem pipeline * Reveting config and universal gemm example * clang formatted * remove comments * clang formatted * Add memory operation changes for defualt pipeline * fix config file --------- Co-authored-by: ThomasNing <thomas.ning@amd.com>
61 lines
949 B
JSON
61 lines
949 B
JSON
{
|
|
|
|
"layout_a": {
|
|
"values": ["r"]
|
|
},
|
|
"layout_b": {
|
|
"values": ["c"]
|
|
},
|
|
"layout_c": {
|
|
"values": ["r"]
|
|
},
|
|
"datatype": {
|
|
"values": ["fp16"]
|
|
},
|
|
"tile_m": {
|
|
"values": [256]
|
|
},
|
|
"tile_n": {
|
|
"values": [256]
|
|
},
|
|
"tile_k": {
|
|
"values": [32]
|
|
},
|
|
"warp_m": {
|
|
"values": [2]
|
|
},
|
|
"warp_n": {
|
|
"values": [2]
|
|
},
|
|
"warp_k": {
|
|
"values": [1]
|
|
},
|
|
"warp_tile_m": {
|
|
"values": [32]
|
|
},
|
|
"warp_tile_n": {
|
|
"values": [32]
|
|
},
|
|
"warp_tile_k": {
|
|
"values": [16]
|
|
},
|
|
"kPadM": {
|
|
"values": [false]
|
|
},
|
|
"kPadN": {
|
|
"values": [false]
|
|
},
|
|
"kPadK": {
|
|
"values": [false]
|
|
},
|
|
"pipeline": {
|
|
"values": ["compv3", "compv4", "mem"]
|
|
},
|
|
"scheduler": {
|
|
"values": ["intrawave", "interwave"]
|
|
},
|
|
"epilogue": {
|
|
"values": ["default", "cshuffle"]
|
|
}
|
|
}
|