CUTLASS 3.6.0 (#1850)
* v3.6 * update changelog * update readme * fix typo * fixing typos * hopper gemm with weight prefetch --------- Co-authored-by: yuzhai <yuzhai@nvidia.com> Co-authored-by: Haicheng Wu <haichengw@nvidia.com>
This commit is contained in:
co-authored by
yuzhai
Haicheng Wu
parent
0837a2a00a
commit
cc3c29a81a
@@ -29,7 +29,7 @@
|
||||
*
|
||||
**************************************************************************************************/
|
||||
|
||||
#define CUTLASS_DEBUG_TRACE_LEVEL 1
|
||||
//#define CUTLASS_DEBUG_TRACE_LEVEL 1
|
||||
|
||||
#include "cutlass_unit_test.h"
|
||||
|
||||
@@ -41,7 +41,6 @@
|
||||
|
||||
using namespace cute;
|
||||
|
||||
|
||||
template <class LayoutA, class LayoutB>
|
||||
void
|
||||
test_distribute(LayoutA const& layoutA,
|
||||
@@ -54,8 +53,8 @@ test_distribute(LayoutA const& layoutA,
|
||||
CUTLASS_TRACE_HOST(" => ");
|
||||
CUTLASS_TRACE_HOST(layoutR);
|
||||
|
||||
// Test that layout B is softly compatible with layout R
|
||||
EXPECT_TRUE(softly_compatible(layoutB, layoutR));
|
||||
EXPECT_TRUE(evenly_divides(layoutB, size(layoutR)));
|
||||
EXPECT_TRUE(evenly_divides(layoutA, layoutR));
|
||||
|
||||
// Post-condition on the codomain of the distribute
|
||||
for (int i = 0; i < size(layoutR); ++i) {
|
||||
|
||||
Reference in New Issue
Block a user