* CUTLASS 3.8 Release
* update
* Update README.md
* Revert "Update README.md"
This reverts commit b353e36fe8.
* update
* update
---------
Co-authored-by: Haicheng Wu <57973641+hwu36@users.noreply.github.com>
Co-authored-by: Haicheng Wu <haichengw@nvidia.com>
665 lines
28 KiB
C++
665 lines
28 KiB
C++
/***************************************************************************************************
|
|
* Copyright (c) 2020 - 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/copy.hpp>
|
|
#include <cute/arch/copy_sm90.hpp>
|
|
namespace cute
|
|
{
|
|
|
|
constexpr uint32_t Sm100MmaPeerBitMask = 0xFEFFFFFF;
|
|
constexpr uint64_t Sm100MemDescDefault = uint64_t(0x1000000000000000);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/// UTMA_LOAD : Initiates a TMA copy from global memory to shared memory
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct SM100_TMA_2SM_LOAD_1D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy([[maybe_unused]] void const* desc_ptr, [[maybe_unused]] uint64_t* mbar_ptr, [[maybe_unused]] uint64_t cache_hint,
|
|
[[maybe_unused]] void * smem_ptr,
|
|
[[maybe_unused]] int32_t const& crd0)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.1d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3}], [%2], %4;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(crd0), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_2D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy([[maybe_unused]] void const* desc_ptr, [[maybe_unused]] uint64_t* mbar_ptr, [[maybe_unused]] uint64_t cache_hint,
|
|
[[maybe_unused]] void * smem_ptr,
|
|
[[maybe_unused]] int32_t const& crd0, int32_t const& crd1)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.2d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4}], [%2], %5;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(crd0), "r"(crd1), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_3D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy([[maybe_unused]] void const* desc_ptr, [[maybe_unused]] uint64_t* mbar_ptr, [[maybe_unused]] uint64_t cache_hint,
|
|
[[maybe_unused]] void * smem_ptr,
|
|
[[maybe_unused]] int32_t const& crd0, int32_t const& crd1, int32_t const& crd2)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.3d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5}], [%2], %6;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_4D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.4d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6}], [%2], %7;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "r"(crd3), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_5D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3, int32_t const& crd4)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.5d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6, %7}], [%2], %8;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "r"(crd3), "r"(crd4), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_1D::copy(desc_ptr, mbar_ptr, cache_hint, smem_ptr, crd0);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_2D::copy(desc_ptr, mbar_ptr, cache_hint, smem_ptr, crd0, crd1);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_3D::copy(desc_ptr, mbar_ptr, cache_hint, smem_ptr, crd0, crd1, crd2);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_4D::copy(desc_ptr, mbar_ptr, cache_hint, smem_ptr, crd0, crd1, crd2, crd3);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3, int32_t const& crd4)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_5D::copy(desc_ptr, mbar_ptr, cache_hint, smem_ptr, crd0, crd1, crd2, crd3, crd4);
|
|
}
|
|
|
|
using PREFETCH = typename SM90_TMA_LOAD::PREFETCH;
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/// TMA_LOAD_MULTICAST: Initiates a TMA copy from global memory to shared memory
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST_1D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.1d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%4}], [%2], %3, %5;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar), "h"(multicast_mask),
|
|
"r"(crd0), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST_2D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.2d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%4, %5}], [%2], %3, %6;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar), "h"(multicast_mask),
|
|
"r"(crd0), "r"(crd1), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST_3D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.3d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%4, %5, %6}], [%2], %3, %7;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar), "h"(multicast_mask),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST_4D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.4d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%4, %5, %6, %7}], [%2], %3, %8;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar), "h"(multicast_mask),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "r"(crd3), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST_5D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3, int32_t const& crd4)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.5d.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%4, %5, %6, %7, %8}], [%2], %3, %9;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar), "h"(multicast_mask),
|
|
"r"(crd0), "r"(crd1), "r"(crd2), "r"(crd3), "r"(crd4), "l"(cache_hint)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM0_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_MULTICAST
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_MULTICAST_1D::copy(desc_ptr, mbar_ptr, multicast_mask, cache_hint, smem_ptr, crd0);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_MULTICAST_2D::copy(desc_ptr, mbar_ptr, multicast_mask, cache_hint, smem_ptr, crd0, crd1);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_MULTICAST_3D::copy(desc_ptr, mbar_ptr, multicast_mask, cache_hint, smem_ptr, crd0, crd1, crd2);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_MULTICAST_4D::copy(desc_ptr, mbar_ptr, multicast_mask, cache_hint, smem_ptr, crd0, crd1, crd2, crd3);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask, uint64_t cache_hint,
|
|
void * smem_ptr,
|
|
int32_t const& crd0, int32_t const& crd1, int32_t const& crd2, int32_t const& crd3, int32_t const& crd4)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_MULTICAST_5D::copy(desc_ptr, mbar_ptr, multicast_mask, cache_hint, smem_ptr, crd0, crd1, crd2, crd3, crd4);
|
|
}
|
|
|
|
using PREFETCH = typename SM90_TMA_LOAD::PREFETCH;
|
|
};
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_3D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_n,
|
|
uint16_t const& offset_w)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.3d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5}], [%2], {%6}, %7;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_n),
|
|
"h"(offset_w), "l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_4D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.4d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6}], [%2], {%7, %8}, %9;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_h), "r"(coord_n),
|
|
"h"(offset_w), "h"(offset_h), "l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_5D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_d, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h,
|
|
uint16_t const& offset_d)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.5d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6, %7}], [%2], {%8, %9, %10}, %11;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_h), "r"(coord_d), "r"(coord_n),
|
|
"h"(offset_w), "h"(offset_h), "h"(offset_d), "l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_n,
|
|
uint16_t const& offset_w)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_3D::copy(desc_ptr, mbar_ptr, smem_ptr,
|
|
coord_c, coord_w, coord_n,
|
|
offset_w);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_4D::copy(desc_ptr, mbar_ptr, smem_ptr,
|
|
coord_c, coord_w, coord_h, coord_n,
|
|
offset_w, offset_h);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_d, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h,
|
|
uint16_t const& offset_d)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_5D::copy(desc_ptr, mbar_ptr, smem_ptr,
|
|
coord_c, coord_w, coord_h, coord_d, coord_n,
|
|
offset_w, offset_h, offset_d);
|
|
}
|
|
|
|
using PREFETCH = typename SM90_TMA_LOAD_IM2COL::PREFETCH;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_3D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_n,
|
|
uint16_t const& offset_w)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.3d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5}], [%2], {%6}, %7, %8;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_n),
|
|
"h"(offset_w),
|
|
"h"(multicast_mask),
|
|
"l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_4D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.4d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6}], [%2], {%7, %8}, %9, %10;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_h), "r"(coord_n),
|
|
"h"(offset_w), "h"(offset_h),
|
|
"h"(multicast_mask),
|
|
"l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_5D
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_d, int32_t const& coord_n,
|
|
uint16_t const& offset_w,
|
|
uint16_t const& offset_h,
|
|
uint16_t const& offset_d)
|
|
{
|
|
#if defined(CUTE_ARCH_TMA_SM100_ENABLED)
|
|
uint64_t gmem_int_desc = reinterpret_cast<uint64_t>(desc_ptr);
|
|
// Executed by both CTAs. Set peer bit to 0 so that the
|
|
// transaction bytes will update CTA0's barrier.
|
|
uint32_t smem_int_mbar = cast_smem_ptr_to_uint(mbar_ptr) & Sm100MmaPeerBitMask;
|
|
uint32_t smem_int_ptr = cast_smem_ptr_to_uint(smem_ptr);
|
|
asm volatile (
|
|
"cp.async.bulk.tensor.5d.im2col.cta_group::2.shared::cluster.global.mbarrier::complete_tx::bytes.multicast::cluster.L2::cache_hint"
|
|
" [%0], [%1, {%3, %4, %5, %6, %7}], [%2], {%8, %9, %10}, %11, %12;"
|
|
:
|
|
: "r"(smem_int_ptr), "l"(gmem_int_desc), "r"(smem_int_mbar),
|
|
"r"(coord_c), "r"(coord_w), "r"(coord_h), "r"(coord_d), "r"(coord_n),
|
|
"h"(offset_w), "h"(offset_h), "h"(offset_d),
|
|
"h"(multicast_mask),
|
|
"l"(Sm100MemDescDefault)
|
|
: "memory");
|
|
#else
|
|
CUTE_INVALID_CONTROL_PATH("Trying to use tma without CUTE_ARCH_TMA_SM100_ENABLED.");
|
|
#endif
|
|
}
|
|
};
|
|
|
|
struct SM100_TMA_2SM_LOAD_IM2COL_MULTICAST
|
|
{
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_n,
|
|
uint16_t const& offset_w)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_3D::copy(desc_ptr, mbar_ptr, multicast_mask,
|
|
smem_ptr,
|
|
coord_c, coord_w, coord_n,
|
|
offset_w);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_n,
|
|
uint16_t const& offset_w, uint16_t const& offset_h)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_4D::copy(desc_ptr, mbar_ptr, multicast_mask,
|
|
smem_ptr,
|
|
coord_c, coord_w, coord_h, coord_n,
|
|
offset_w, offset_h);
|
|
}
|
|
CUTE_HOST_DEVICE static void
|
|
copy(void const* desc_ptr, uint64_t* mbar_ptr, uint16_t multicast_mask,
|
|
void * smem_ptr,
|
|
int32_t const& coord_c, int32_t const& coord_w, int32_t const& coord_h, int32_t const& coord_d, int32_t const& coord_n,
|
|
uint16_t const& offset_w, uint16_t const& offset_h, uint16_t const& offset_d)
|
|
{
|
|
return SM100_TMA_2SM_LOAD_IM2COL_MULTICAST_5D::copy(desc_ptr, mbar_ptr, multicast_mask,
|
|
smem_ptr,
|
|
coord_c, coord_w, coord_h, coord_d, coord_n,
|
|
offset_w, offset_h, offset_d);
|
|
}
|
|
|
|
using PREFETCH = typename SM90_TMA_LOAD_IM2COL::PREFETCH;
|
|
};
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
} // end namespace cute
|