add 2nd variation of implicit gemm

[ROCm/composable_kernel commit: 2096847297]
This commit is contained in:
Chao Liu
2019-01-20 21:14:35 -06:00
parent 7e4029f05e
commit fdd85c6161
17 changed files with 989 additions and 123 deletions

View File

@@ -46,3 +46,14 @@ __host__ __device__ constexpr auto
{
return ConstantMatrixDescriptor<NRow, NCol, RowStride>{};
}
template <class TDesc>
__host__ __device__ void print_ConstantMatrixDescriptor(TDesc, const char* s)
{
const auto desc = TDesc{};
constexpr auto I0 = Number<0>{};
constexpr auto I1 = Number<1>{};
printf("%s NRow %u NCol %u RowStride %u\n", s, desc.NRow(), desc.NCol(), desc.RowStride());
}