Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel_ROCM
Commits
ec1b65e7
Commit
ec1b65e7
authored
Jan 19, 2025
by
Aleksander Dudek
Browse files
[CK_TILE] Update the file structure
parent
aa30ef56
Changes
262
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
64 additions
and
31 deletions
+64
-31
include/ck_tile/host/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp
...s/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp
+3
-3
include/ck_tile/host/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp
...sed_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp
+5
-5
include/ck_tile/host/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp
...s/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp
+3
-3
include/ck_tile/host/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp
...ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp
+1
-1
include/ck_tile/host/ops/fused_moe/pipeline/fused_moegemm_traits.hpp
...tile/host/ops/fused_moe/pipeline/fused_moegemm_traits.hpp
+1
-1
include/ck_tile/host/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp
...tile/host/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp
+2
-2
include/ck_tile/host/ops/fused_moe/pipeline/moe_sorting_policy.hpp
...k_tile/host/ops/fused_moe/pipeline/moe_sorting_policy.hpp
+3
-3
include/ck_tile/host/ops/fused_moe/pipeline/moe_sorting_problem.hpp
..._tile/host/ops/fused_moe/pipeline/moe_sorting_problem.hpp
+1
-1
include/ck_tile/host/ops/image_to_column.hpp
include/ck_tile/host/ops/image_to_column.hpp
+8
-0
include/ck_tile/host/ops/image_to_column/kernel/image_to_column_kernel.hpp
...ost/ops/image_to_column/kernel/image_to_column_kernel.hpp
+2
-2
include/ck_tile/host/ops/image_to_column/pipeline/block_image_to_column_problem.hpp
...mage_to_column/pipeline/block_image_to_column_problem.hpp
+1
-1
include/ck_tile/host/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp
...s/image_to_column/pipeline/tile_image_to_column_shape.hpp
+1
-1
include/ck_tile/host/ops/norm_reduce.hpp
include/ck_tile/host/ops/norm_reduce.hpp
+8
-0
include/ck_tile/host/ops/norm_reduce/block/block_norm_reduce.hpp
.../ck_tile/host/ops/norm_reduce/block/block_norm_reduce.hpp
+2
-2
include/ck_tile/host/ops/norm_reduce/block/block_norm_reduce_problem.hpp
.../host/ops/norm_reduce/block/block_norm_reduce_problem.hpp
+1
-1
include/ck_tile/host/ops/norm_reduce/thread/thread_welford.hpp
...de/ck_tile/host/ops/norm_reduce/thread/thread_welford.hpp
+1
-1
include/ck_tile/host/ops/permute.hpp
include/ck_tile/host/ops/permute.hpp
+7
-0
include/ck_tile/host/ops/permute/kernel/generic_permute_kernel.hpp
...k_tile/host/ops/permute/kernel/generic_permute_kernel.hpp
+3
-3
include/ck_tile/host/ops/permute/pipeline/generic_petmute_problem.hpp
...ile/host/ops/permute/pipeline/generic_petmute_problem.hpp
+1
-1
include/ck_tile/host/ops/rmsnorm2d.hpp
include/ck_tile/host/ops/rmsnorm2d.hpp
+10
-0
No files found.
include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/common/tensor_layout.hpp"
#include "ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp"
#include "ck_tile/
device/
ops/common/tensor_layout.hpp"
#include "ck_tile/
device/
ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp"
#include "ck_tile/ops/flatmm.hpp"
#include "ck_tile/ops/gemm/warp/warp_gemm.hpp"
#include "ck_tile/ops/gemm/warp/warp_gemm_dispatcher.hpp"
#include "ck_tile/
device/
ops/fused_moe/pipeline/fused_moegemm_traits.hpp"
#include "ck_tile/
device/
ops/flatmm.hpp"
#include "ck_tile/
device/
ops/gemm/warp/warp_gemm.hpp"
#include "ck_tile/
device/
ops/gemm/warp/warp_gemm_dispatcher.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/common/tensor_layout.hpp"
#include "ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp"
#include "ck_tile/
device/
ops/common/tensor_layout.hpp"
#include "ck_tile/
device/
ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/fused_moegemm_traits.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/moe_sorting_pipeline.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp"
#include "ck_tile/
device/
ops/fused_moe/pipeline/moe_sorting_policy.hpp"
#include <string>
#include <type_traits>
...
...
include/ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/moe_sorting_policy.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/softmax.hpp"
#include "ck_tile/ops/topk.hpp"
#include "ck_tile/
device/
ops/softmax.hpp"
#include "ck_tile/
device/
ops/topk.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/fused_moe/pipeline/moe_sorting_problem.hpp
→
include/ck_tile/
host/
ops/fused_moe/pipeline/moe_sorting_problem.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/
ops/permute
.hpp
→
include/ck_tile/
host/ops/image_to_column
.hpp
View file @
ec1b65e7
...
...
@@ -3,7 +3,6 @@
#pragma once
#include "ck_tile/ops/permute/kernel/generic_permute_kernel.hpp"
#include "ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp"
#include "ck_tile/ops/common/generic_2d_block_shape.hpp"
#include "ck_tile/ops/common/tensor_layout.hpp"
#include "ck_tile/host/ops/image_to_column/kernel/image_to_column_kernel.hpp"
#include "ck_tile/host/ops/image_to_column/pipeline/block_image_to_column_problem.hpp"
#include "ck_tile/host/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp"
include/ck_tile/ops/image_to_column/kernel/image_to_column_kernel.hpp
→
include/ck_tile/
host/
ops/image_to_column/kernel/image_to_column_kernel.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/common.hpp"
#include "ck_tile/
device/
ops/common.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp
→
include/ck_tile/
host/
ops/image_to_column/pipeline/block_image_to_column_problem.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp
→
include/ck_tile/
host/
ops/image_to_column/pipeline/tile_image_to_column_shape.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/
ops/softmax
.hpp
→
include/ck_tile/
host/ops/norm_reduce
.hpp
View file @
ec1b65e7
...
...
@@ -3,7 +3,6 @@
#pragma once
#include "ck_tile/ops/softmax/block/block_softmax_2d.hpp"
#include "ck_tile/ops/softmax/block/block_softmax_2d_problem.hpp"
#include "ck_tile/ops/common/generic_2d_block_shape.hpp"
#include "ck_tile/ops/common/tensor_layout.hpp"
#include "ck_tile/host/ops/norm_reduce/block/block_norm_reduce.hpp"
#include "ck_tile/host/ops/norm_reduce/block/block_norm_reduce_problem.hpp"
#include "ck_tile/host/ops/norm_reduce/thread/thread_welford.hpp"
include/ck_tile/ops/norm_reduce/block/block_norm_reduce.hpp
→
include/ck_tile/
host/
ops/norm_reduce/block/block_norm_reduce.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/norm_reduce/thread/thread_welford.hpp"
#include "ck_tile/
device/
ops/norm_reduce/thread/thread_welford.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/norm_reduce/block/block_norm_reduce_problem.hpp
→
include/ck_tile/
host/
ops/norm_reduce/block/block_norm_reduce_problem.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
3
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/ops/norm_reduce/thread/thread_welford.hpp
→
include/ck_tile/
host/
ops/norm_reduce/thread/thread_welford.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
3
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/host/ops/permute.hpp
0 → 100644
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2025, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/host/ops/permute/kernel/generic_permute_kernel.hpp"
#include "ck_tile/host/ops/permute/pipeline/generic_petmute_problem.hpp"
include/ck_tile/ops/permute/kernel/generic_permute_kernel.hpp
→
include/ck_tile/
host/
ops/permute/kernel/generic_permute_kernel.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/core.hpp"
#include "ck_tile/ops/common.hpp"
// #include "ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp"
#include "ck_tile/
device/
ops/common.hpp"
// #include "ck_tile/
device/
ops/permute/pipeline/generic_petmute_problem.hpp"
namespace
ck_tile
{
...
...
include/ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp
→
include/ck_tile/
host/
ops/permute/pipeline/generic_petmute_problem.hpp
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-202
4
, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-202
5
, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
...
...
include/ck_tile/host/ops/rmsnorm2d.hpp
0 → 100644
View file @
ec1b65e7
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2025, Advanced Micro Devices, Inc. All rights reserved.
#pragma once
#include "ck_tile/host/ops/rmsnorm2d/kernel/rmsnorm2d_fwd_kernel.hpp"
#include "ck_tile/host/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_default_policy.hpp"
#include "ck_tile/host/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_one_pass.hpp"
#include "ck_tile/host/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_problem.hpp"
#include "ck_tile/host/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_two_pass.hpp"
Prev
1
…
5
6
7
8
9
10
11
12
13
14
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment