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:
@ -34,6 +34,8 @@
|
||||
#include <cutlass/trace.h>
|
||||
#include <cute/numeric/integral_constant.hpp>
|
||||
#include <cute/numeric/math.hpp>
|
||||
#include <cute/swizzle.hpp>
|
||||
#include <cute/swizzle_layout.hpp>
|
||||
#include <cute/util/type_traits.hpp>
|
||||
|
||||
// If cute::gcd returns auto instead of common_type_t<T, U>,
|
||||
@ -123,3 +125,11 @@ TEST(CuTe_core, lcm_returns_common_type)
|
||||
static_assert(int(result) == 1);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(CuTe_core, max_alignment)
|
||||
{
|
||||
{
|
||||
constexpr auto swizzle = cute::Swizzle<3,4,3>{};
|
||||
static_assert(cute::max_alignment(swizzle) == 1 << 4);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user