releaase 2.11 (#703)

This commit is contained in:
Aditya Atluri
2022-11-19 06:02:15 -08:00
committed by GitHub
parent 3c90f6aea6
commit c975e2ccbb
329 changed files with 47332 additions and 10607 deletions

View File

@ -97,6 +97,11 @@ template <typename OperatorClass> struct ArchMap<arch::Sm86, OperatorClass> {
static int const kMax = 1024;
};
template <typename OperatorClass> struct ArchMap<arch::Sm90, OperatorClass> {
static int const kMin = 90;
static int const kMax = 1024;
};
/////////////////////////////////////////////////////////////////////////////////////////////////
} // namespace library

View File

@ -1445,6 +1445,9 @@ struct ConvArguments {
/// pointer to implicit gemm matrix B
void const *B;
/// pointer to reordered matrix B
void const *reordered_B;
/// pointer to implicit gemm matrix C
void const *C;