* cutlass 3.9 update * rebase * fixes out of shared memory for blockwise Blackwell * doc format * fix issue 2253 * disable host ref by default * fix sm120 smem capacity --------- Co-authored-by: yuzhai <yuzhai@nvidia.com> Co-authored-by: Haicheng Wu <haichengw@nvidia.com>
184 lines
7.0 KiB
C++
184 lines
7.0 KiB
C++
/***************************************************************************************************
|
|
* Copyright (c) 2023 - 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
**************************************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <cute/arch/config.hpp>
|
|
#include <cute/arch/util.hpp>
|
|
#include <cute/numeric/integral_constant.hpp>
|
|
#include <cute/pointer.hpp>
|
|
|
|
namespace cute::TMEM {
|
|
|
|
//
|
|
// TMEM Addressing Constants
|
|
//
|
|
|
|
// 128 DP x 512 COL x uint32_t-addressing
|
|
using MAX_CAPACITY_BITS = Int<128*512*32>;
|
|
|
|
// TMEM DP stride in bit-addressing (shift by 5 for conversion from uint32_t)
|
|
using DP_b = cute::constant<int32_t, (1 << 21)>;
|
|
|
|
// TMEM DP stride in type-T addressing
|
|
template <class T = uint32_t>
|
|
using DP = cute::constant<int32_t, shiftl((1 << 16), tmem_ptr<T>::OffsetShift)>;
|
|
|
|
//
|
|
// TMEM Allocators
|
|
//
|
|
|
|
// All operations of this class require that only a single warp uniformly participates
|
|
class Allocator1Sm {
|
|
public:
|
|
static constexpr int ColumnsPerAllocationSlice = 32;
|
|
static constexpr int Sm100TmemCapacityColumns = 512;
|
|
|
|
__device__ Allocator1Sm() { }
|
|
|
|
/**
|
|
* Performs a non-blocking allocation of TMEM.
|
|
* @param num_columns Number of columns being freed. Must be 32 <= num_columns <= 512 and power of 2.
|
|
* @param dst_ptr Pointer to shared memory to which to write the result tmem pointer to.
|
|
* @pre Must be issued by a single fully active warp of the CTA.
|
|
* @pre Must never be issued by more than one warp at the same time.
|
|
* @pre For repeated allocations, the same warp must be used to issue all allocations.
|
|
**/
|
|
CUTE_HOST_DEVICE void
|
|
allocate(int num_columns, uint32_t* dst_ptr) {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
uint32_t dst_intptr = cute::cast_smem_ptr_to_uint(dst_ptr);
|
|
asm volatile(
|
|
"tcgen05.alloc.cta_group::1.sync.aligned.shared::cta.b32 [%0], %1;"
|
|
:
|
|
: "r"(dst_intptr), "r"(num_columns));
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
|
|
__device__
|
|
void
|
|
free(uint32_t tmem_ptr, int num_columns) {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
asm volatile(
|
|
"{\n\t"
|
|
"tcgen05.dealloc.cta_group::1.sync.aligned.b32 %0, %1; \n\t"
|
|
"}"
|
|
:
|
|
: "r"(tmem_ptr), "r"(num_columns));
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
|
|
__device__ void
|
|
release_allocation_lock() {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
asm volatile("tcgen05.relinquish_alloc_permit.cta_group::1.sync.aligned;" ::);
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class Allocator2Sm {
|
|
public:
|
|
static constexpr int ColumnsPerAllocationSlice = 32;
|
|
static constexpr int Sm100TmemCapacityColumns = 512;
|
|
|
|
__device__ Allocator2Sm() { }
|
|
|
|
/**
|
|
* Performs a non-blocking allocation of TMEM.
|
|
* @param num_columns Number of columns being freed. Must be 32 <= num_columns <= 512 and power of 2.
|
|
* @param dst_ptr Pointer to shared memory to which to write the result tmem pointer to.
|
|
* Both CTAs _must_ provide the exact same dst_ptr for correctness.
|
|
* @pre Must be issued by a single fully active warp of the CTA.
|
|
* @pre Must never be issued by more than one warp at the same time.
|
|
* @pre For repeated allocations, the same warp must be used to issue all allocations.
|
|
* @pre The 2 warps from participating CTAs have the same logical warp ID.
|
|
**/
|
|
CUTE_HOST_DEVICE void
|
|
allocate(int num_columns, uint32_t* dst_ptr) {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
uint32_t dst_intptr = cute::cast_smem_ptr_to_uint(dst_ptr);
|
|
asm volatile(
|
|
"tcgen05.alloc.cta_group::2.sync.aligned.shared::cta.b32 [%0], %1;"
|
|
:
|
|
: "r"(dst_intptr), "r"(num_columns));
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
|
|
/**
|
|
* Frees the TMEM corresponding to the pointer and slice count provided.
|
|
* Release the TMEM after checking that the CTA issuing the free does indeed own the corresponding slices.
|
|
* @param tmem_ptr Base address of the TMEM address space being freed.
|
|
* @param num_columns Number of columns being freed. Must be 32 <= num_columns <= 512 and power of 2.
|
|
* @pre Must be issued by a single fully active warp of the CTA.
|
|
* @pre Must never be issued by more than one warp at the same time.
|
|
* @pre The 2 warps from participating CTAs have the same logical warp ID.
|
|
* @returns true
|
|
**/
|
|
__device__
|
|
void
|
|
free(uint32_t tmem_ptr, int num_columns) {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
asm volatile(
|
|
"{\n\t"
|
|
"tcgen05.dealloc.cta_group::2.sync.aligned.b32 %0, %1; \n\t"
|
|
"}"
|
|
:
|
|
: "r"(tmem_ptr), "r"(num_columns));
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
|
|
__device__
|
|
void
|
|
release_allocation_lock() {
|
|
#if defined(CUTE_ARCH_TCGEN05_TMEM_ENABLED)
|
|
asm volatile("tcgen05.relinquish_alloc_permit.cta_group::2.sync.aligned;" ::);
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Attempting to use TMEM allocation PTX without CUTE_ARCH_TCGEN05_TMEM_ENABLED");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
} // namespace cute::TMEM
|