* Update examples/77_blackwell_fmha/device/fmha_device_bwd.hpp Co-authored-by: Vijay Thakkar <vijaythakkar@me.com> * bug fix & use existing value rather than pass one more argument to support different dim in bwd_convert * Fix casual mask cnt when IsQBegin==false * bug fix in casual mask backward * code sync --------- Co-authored-by: Vijay Thakkar <vijaythakkar@me.com>
161 lines
5.3 KiB
C++
161 lines
5.3 KiB
C++
/***************************************************************************************************
|
|
* Copyright (c) 2024 - 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 "cutlass/cutlass.h"
|
|
#include "cutlass/fast_math.h"
|
|
#include "cutlass/kernel_hardware_info.h"
|
|
|
|
namespace cutlass::fmha::kernel {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct Sm100MlaIndividualTileScheduler {
|
|
|
|
struct Params {
|
|
dim3 grid;
|
|
};
|
|
|
|
bool valid_ = true;
|
|
|
|
CUTLASS_DEVICE
|
|
Sm100MlaIndividualTileScheduler(Params const&) {}
|
|
|
|
template<class ProblemShape, class ClusterShape>
|
|
static Params to_underlying_arguments(
|
|
ProblemShape const& problem_shape, KernelHardwareInfo hw_info,
|
|
ClusterShape const& cluster_shape, int const& split_kv) {
|
|
using namespace cute;
|
|
dim3 grid(get<0>(cluster_shape), get<3>(problem_shape) /* Batch */, split_kv /*Maximum Split KV*/);
|
|
return Params{ grid };
|
|
}
|
|
|
|
static dim3 get_grid_shape(Params const& params) {
|
|
return params.grid;
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
bool is_valid() {
|
|
return valid_;
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
auto get_block_coord() {
|
|
using namespace cute;
|
|
return make_coord(blockIdx.x, _0{}, blockIdx.y, blockIdx.z);
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
Sm100MlaIndividualTileScheduler& operator++() {
|
|
valid_ = false;
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct Sm100MlaPersistentTileScheduler {
|
|
|
|
struct Params {
|
|
int num_blocks;
|
|
FastDivmod divmod_m_block;
|
|
FastDivmod divmod_b;
|
|
FastDivmod divmod_split_kv;
|
|
KernelHardwareInfo hw_info;
|
|
};
|
|
|
|
int block_idx = 0;
|
|
Params params;
|
|
|
|
CUTLASS_DEVICE
|
|
Sm100MlaPersistentTileScheduler(Params const& params) : block_idx(blockIdx.x), params(params) {}
|
|
|
|
template<class ProblemShape, class ClusterShape>
|
|
static Params to_underlying_arguments(
|
|
ProblemShape const& problem_shape, KernelHardwareInfo hw_info,
|
|
ClusterShape const& cluster_shape, int const& split_kv) {
|
|
using namespace cute;
|
|
// Get SM count if needed, otherwise use user supplied SM count
|
|
int sm_count = hw_info.sm_count;
|
|
if (sm_count <= 1 || sm_count % size<0>(cluster_shape) != 0) {
|
|
CUTLASS_TRACE_HOST(" WARNING: Arguments do not include a valid SM count.\n"
|
|
" For optimal performance, populate the arguments KernelHardwareInfo struct with the SM count.");
|
|
sm_count = KernelHardwareInfo::query_device_multiprocessor_count(hw_info.device_id);
|
|
}
|
|
|
|
CUTLASS_TRACE_HOST("to_underlying_arguments(): Setting persistent grid SM count to " << sm_count);
|
|
hw_info.sm_count = sm_count;
|
|
|
|
int num_m_blocks = size<0>(cluster_shape);
|
|
int num_blocks = num_m_blocks * get<3>(problem_shape) /* Batch */;
|
|
num_blocks *= split_kv; /* Maximum Split KV*/
|
|
|
|
return Params {
|
|
num_blocks,
|
|
{ num_m_blocks}, { get<3>(problem_shape) }, {split_kv},
|
|
hw_info
|
|
};
|
|
}
|
|
|
|
static dim3 get_grid_shape(Params const& params) {
|
|
dim3 grid(std::min(params.num_blocks, params.hw_info.sm_count), 1, 1);
|
|
return grid;
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
bool is_valid() {
|
|
return block_idx < params.num_blocks;
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
auto get_block_coord() {
|
|
using namespace cute;
|
|
int block_decode = block_idx;
|
|
int m_block, bidb, n_split_kv;
|
|
params.divmod_m_block(block_decode, m_block, block_decode);
|
|
params.divmod_split_kv(block_decode, n_split_kv, block_decode);
|
|
params.divmod_b(block_decode, bidb, block_decode);
|
|
return make_coord(m_block, _0{}, bidb, n_split_kv);
|
|
}
|
|
|
|
CUTLASS_DEVICE
|
|
Sm100MlaPersistentTileScheduler& operator++() {
|
|
block_idx += gridDim.x;
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
} // namespace cutlass::fmha::kernel
|
|
|