Commit 4eaa502b authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Rename local type alias

parent e5e7adbd
...@@ -204,13 +204,13 @@ struct GridwisePermute ...@@ -204,13 +204,13 @@ struct GridwisePermute
auto in_block_buf = make_dynamic_buffer<AddressSpaceEnum::Lds>( auto in_block_buf = make_dynamic_buffer<AddressSpaceEnum::Lds>(
static_cast<InDataType*>(p_shared), in_block_desc.GetElementSpaceSize()); static_cast<InDataType*>(p_shared), in_block_desc.GetElementSpaceSize());
using SliceLengths = Sequence<1, HPerBlock, WPerBlock>; using BlockSliceLengths = Sequence<1, HPerBlock, WPerBlock>;
using ABlockTransferAccessOrder = Sequence<0, 1, 2>; using InBlockTransferAccessOrder = Sequence<0, 1, 2>;
constexpr index_t ABlockTransferSrcVectorDim = 2; constexpr index_t SrcVectorDim = 2;
constexpr index_t ABlockTransferDstVectorDim = 1; constexpr index_t DstVectorDim = 1;
constexpr index_t ABlockTransferSrcScalarPerVector = 1; constexpr index_t SrcScalarPerVector = 1;
constexpr index_t ABlockTransferDstScalarPerVector = 1; constexpr index_t DstScalarPerVector = 1;
using ck::tensor_operation::element_wise::PassThrough; using ck::tensor_operation::element_wise::PassThrough;
...@@ -221,19 +221,19 @@ struct GridwisePermute ...@@ -221,19 +221,19 @@ struct GridwisePermute
ElementwiseOperation, ElementwiseOperation,
PassThrough, PassThrough,
InMemoryDataOperationEnum::Set, InMemoryDataOperationEnum::Set,
SliceLengths, BlockSliceLengths,
InBlockTransferThreadClusterLengths, InBlockTransferThreadClusterLengths,
InBlockTransferThreadClusterArrangeOrder, InBlockTransferThreadClusterArrangeOrder,
InDataType, InDataType,
InDataType, InDataType,
decltype(in_grid_desc_n_h_w), decltype(in_grid_desc_n_h_w),
decltype(in_block_desc), decltype(in_block_desc),
ABlockTransferAccessOrder, InBlockTransferAccessOrder,
ABlockTransferAccessOrder, InBlockTransferAccessOrder,
ABlockTransferSrcVectorDim, SrcVectorDim,
ABlockTransferSrcVectorDim, SrcVectorDim,
ABlockTransferSrcScalarPerVector, SrcScalarPerVector,
ABlockTransferSrcScalarPerVector, SrcScalarPerVector,
1, 1,
1, 1,
true, true,
...@@ -260,19 +260,19 @@ struct GridwisePermute ...@@ -260,19 +260,19 @@ struct GridwisePermute
ElementwiseOperation, ElementwiseOperation,
PassThrough, PassThrough,
InMemoryDataOperationEnum::Set, InMemoryDataOperationEnum::Set,
SliceLengths, BlockSliceLengths,
InBlockTransferThreadClusterLengths, InBlockTransferThreadClusterLengths,
InBlockTransferThreadClusterArrangeOrder, InBlockTransferThreadClusterArrangeOrder,
InDataType, InDataType,
OutDataType, OutDataType,
decltype(in_block_desc), decltype(in_block_desc),
decltype(out_grid_desc_n_h_w), decltype(out_grid_desc_n_h_w),
ABlockTransferAccessOrder, InBlockTransferAccessOrder,
ABlockTransferAccessOrder, InBlockTransferAccessOrder,
ABlockTransferSrcVectorDim, SrcVectorDim,
ABlockTransferDstVectorDim, DstVectorDim,
ABlockTransferSrcScalarPerVector, SrcScalarPerVector,
ABlockTransferDstScalarPerVector, DstScalarPerVector,
1, 1,
1, 1,
true, true,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment