mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-30 11:47:48 +00:00
[CK_TILE] Vector stores c col layout part4 - fix formatting
This commit is contained in:
@@ -321,7 +321,6 @@ struct CShuffleEpilogue
|
||||
return make_naive_tensor_descriptor(
|
||||
make_tuple(number<YPerIterationShuffle>{}, number<XPerIterationShuffle>{}),
|
||||
make_tuple(number<XPerIterationShuffle>{}, number<1>{}));
|
||||
|
||||
}
|
||||
|
||||
CK_TILE_DEVICE static constexpr auto MakeLdsDistributionEncode()
|
||||
@@ -654,7 +653,7 @@ struct CShuffleEpilogue
|
||||
const ScaleN& scale_n = {})
|
||||
{
|
||||
constexpr auto LdsTileDistr = make_static_tile_distribution(MakeLdsDistributionEncode());
|
||||
//print(LdsTileDistr);
|
||||
// print(LdsTileDistr);
|
||||
auto lds_tile = make_static_distributed_tensor<AccDataType>(LdsTileDistr);
|
||||
|
||||
constexpr auto lds_block_desc = MakeLdsBlockDescriptor<Problem>();
|
||||
|
||||
@@ -29,7 +29,7 @@ using NonPersistent = std::false_type;
|
||||
using I16 = ck_tile::number<16>;
|
||||
using I32 = ck_tile::number<32>;
|
||||
using I64 = ck_tile::number<64>;
|
||||
using I128 = ck_tile::number<128>;
|
||||
using I128 = ck_tile::number<128>;
|
||||
using I256 = ck_tile::number<256>;
|
||||
|
||||
// clang-format off
|
||||
|
||||
@@ -287,10 +287,10 @@ class TestCkTileGemmPipeline : public ::testing::Test
|
||||
{
|
||||
GTEST_SKIP() << "Unsupported data type combination for gemm pipeline test.";
|
||||
}
|
||||
//if constexpr(PipelineType == GemmPipelineType::CompV4 ||
|
||||
// std::is_same_v<BDataType, ck_tile::pk_int4_t>)
|
||||
// if constexpr(PipelineType == GemmPipelineType::CompV4 ||
|
||||
// std::is_same_v<BDataType, ck_tile::pk_int4_t>)
|
||||
//{
|
||||
// Only do k_batch = 1 when pipeline is CompV4, or BDataType is I4
|
||||
// Only do k_batch = 1 when pipeline is CompV4, or BDataType is I4
|
||||
k_batches_ = {1};
|
||||
//}
|
||||
// else
|
||||
@@ -318,7 +318,7 @@ class TestCkTileGemmPipeline : public ::testing::Test
|
||||
}
|
||||
}
|
||||
|
||||
template <bool PadM, bool PadN, bool PadK, bool Preshuffle>
|
||||
template <bool PadM, bool PadN, bool PadK, bool Preshuffle>
|
||||
void RunSingle(const int M,
|
||||
const int N,
|
||||
const int K,
|
||||
|
||||
Reference in New Issue
Block a user