mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 12:41:26 +00:00
[ck_tile] Pooling example - Improved tile sizes (#3233)
* improved tile sizes - modified tile sizes for improved example performance * Update example/ck_tile/36_pooling/pool3d.cpp Co-authored-by: Adam Osewski <19374865+aosewski@users.noreply.github.com> --------- Co-authored-by: Adam Osewski <19374865+aosewski@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ad57f6ef0b
commit
1eb26460aa
@@ -295,10 +295,10 @@ class TestCkTilePooling : public ::testing::Test
|
||||
}
|
||||
};
|
||||
|
||||
using Shape1_BlockWarps = ck_tile::sequence<4, 1>;
|
||||
using Shape1_BlockTile = ck_tile::sequence<128, 128>;
|
||||
using Shape1_WarpTile = ck_tile::sequence<32, 128>;
|
||||
using Shape1_ThreadTile = ck_tile::sequence<8, 8>;
|
||||
using Shape1_BlockWarps = ck_tile::sequence<1, 1>;
|
||||
using Shape1_BlockTile = ck_tile::sequence<128, 1>;
|
||||
using Shape1_WarpTile = ck_tile::sequence<128, 1>;
|
||||
using Shape1_ThreadTile = ck_tile::sequence<2, 1>;
|
||||
|
||||
// Cross-warp configuration
|
||||
using Shape2_BlockWarps = ck_tile::sequence<2, 2>;
|
||||
|
||||
Reference in New Issue
Block a user