mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
* Update TensorRT-LLM --------- Co-authored-by: Morgan Funtowicz <funtowiczmo@gmail.com> Co-authored-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
669 lines
27 KiB
C++
669 lines
27 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: Copyright (c) 1993-2022 NVIDIA CORPORATION &
|
|
* AFFILIATES. All rights reserved. SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#include "weightOnlyGroupwiseQuantMatmulPlugin.h"
|
|
#include "tensorrt_llm/kernels/weightOnlyBatchedGemv/enabled.h"
|
|
#include "tensorrt_llm/kernels/weightOnlyBatchedGemv/sm90/kernelLauncher.h"
|
|
|
|
using namespace nvinfer1;
|
|
using namespace tensorrt_llm::common;
|
|
using namespace tensorrt_llm::kernels::cutlass_kernels;
|
|
using tensorrt_llm::plugins::WeightOnlyGroupwiseQuantMatmulPluginCreator;
|
|
using tensorrt_llm::plugins::WeightOnlyGroupwiseQuantMatmulPlugin;
|
|
using tensorrt_llm::plugins::WeightOnlyGroupwiseQuantGemmPluginProfiler;
|
|
|
|
// Flags for indicating whether the corresponding inputs are applied in mQuantAlgo
|
|
// mQuantAlgo = pre_quant_scale * PRE_QUANT_SCALE + zero * ZERO + bias * BIAS
|
|
// Here pre_quant_scale, zero and bias are boolean type
|
|
static constexpr int BIAS = int(1) << 0;
|
|
static constexpr int ZERO = int(1) << 1;
|
|
static constexpr int PRE_QUANT_SCALE = int(1) << 2;
|
|
static constexpr int FP8_ALPHA = int(1) << 3;
|
|
using tensorrt_llm::plugins::read;
|
|
using tensorrt_llm::plugins::write;
|
|
|
|
static const char* WOQ_GROUPWISE_MATMUL_PLUGIN_VERSION{"1"};
|
|
static const char* WOQ_GROUPWISE_MATMUL_PLUGIN_NAME{"WeightOnlyGroupwiseQuantMatmul"};
|
|
PluginFieldCollection WeightOnlyGroupwiseQuantMatmulPluginCreator::mFC{};
|
|
std::vector<nvinfer1::PluginField> WeightOnlyGroupwiseQuantMatmulPluginCreator::mPluginAttributes;
|
|
|
|
void WeightOnlyGroupwiseQuantGemmPluginProfiler::runTactic(int m, int n, int k,
|
|
const WeightOnlyGroupwiseQuantGemmPluginProfiler::Config& tactic, char* workspace, const cudaStream_t& stream)
|
|
{
|
|
// Quantized weights are packed in FP16 format (INT4*4 -> FP16)
|
|
const int originalN = n * FP16_INT4_RATIO;
|
|
half* actPtr = reinterpret_cast<half*>(workspace);
|
|
cutlass::uint4b_t* weightPtr = reinterpret_cast<cutlass::uint4b_t*>(
|
|
nextWorkspacePtr(reinterpret_cast<int8_t*>(actPtr), m * k * sizeof(half)));
|
|
half* inputScalesPtr
|
|
= reinterpret_cast<half*>(nextWorkspacePtr(reinterpret_cast<int8_t*>(weightPtr), n * k * sizeof(float)));
|
|
half* zerosPtr = reinterpret_cast<half*>(
|
|
nextWorkspacePtr(reinterpret_cast<int8_t*>(inputScalesPtr), k * originalN * sizeof(half) / mGroupSize));
|
|
half* biasesPtr = reinterpret_cast<half*>(
|
|
nextWorkspacePtr(reinterpret_cast<int8_t*>(zerosPtr), k * originalN * sizeof(half) / mGroupSize));
|
|
half* outputPtr = reinterpret_cast<half*>(nextWorkspacePtr(reinterpret_cast<int8_t*>(biasesPtr), m * sizeof(half)));
|
|
char* workspacePtr
|
|
= reinterpret_cast<char*>(nextWorkspacePtr(reinterpret_cast<int8_t*>(outputPtr), m * originalN * sizeof(half)));
|
|
|
|
if ((mQuantAlgo & ZERO) == 0)
|
|
{
|
|
zerosPtr = nullptr;
|
|
}
|
|
|
|
if ((mQuantAlgo & BIAS) == 0)
|
|
{
|
|
biasesPtr = nullptr;
|
|
}
|
|
|
|
const int wsSize = mRunner->getWorkspaceSize(m, n, k);
|
|
|
|
mRunner->gemm(actPtr, weightPtr, inputScalesPtr, zerosPtr, biasesPtr, outputPtr, m, originalN, k, mGroupSize,
|
|
tactic, workspacePtr, wsSize, stream);
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantGemmPluginProfiler::computeTmpSize(int maxM, int n, int k)
|
|
{
|
|
// Quantized weights are packed in FP16 format (INT4*4 -> FP16)
|
|
const int originalN = n * FP16_INT4_RATIO;
|
|
std::vector<size_t> workspaces = {
|
|
maxM * k * sizeof(half), // A
|
|
k * n * sizeof(float), // B
|
|
k * originalN * sizeof(half) / mGroupSize, // scales
|
|
k * originalN * sizeof(half) / mGroupSize, // zeros
|
|
maxM * sizeof(half), // biases
|
|
maxM * originalN * sizeof(half), // C
|
|
mRunner->getWorkspaceSize(maxM, n, k) // workspace
|
|
};
|
|
size_t bytes = calculateTotalWorkspaceSize(workspaces.data(), workspaces.size());
|
|
setTmpWorkspaceSizeInBytes(bytes);
|
|
}
|
|
|
|
std::vector<WeightOnlyGroupwiseQuantGemmPluginProfiler::Config> WeightOnlyGroupwiseQuantGemmPluginProfiler::getTactics(
|
|
int m, int n, int k) const
|
|
{
|
|
return mRunner->getConfigs();
|
|
}
|
|
|
|
WeightOnlyGroupwiseQuantMatmulPlugin::WeightOnlyGroupwiseQuantMatmulPlugin(nvinfer1::DataType type, int quant_algo,
|
|
int group_size, const WeightOnlyGroupwiseQuantMatmulPlugin::PluginProfilerPtr& pluginProfiler)
|
|
: mPluginProfiler(pluginProfiler)
|
|
{
|
|
init(type, quant_algo, group_size);
|
|
}
|
|
|
|
// Parameterized constructor
|
|
WeightOnlyGroupwiseQuantMatmulPlugin::WeightOnlyGroupwiseQuantMatmulPlugin(
|
|
const void* data, size_t length, const WeightOnlyGroupwiseQuantMatmulPlugin::PluginProfilerPtr& pluginProfiler)
|
|
: mPluginProfiler(pluginProfiler)
|
|
{
|
|
const char *d = reinterpret_cast<const char*>(data), *a = d;
|
|
nvinfer1::DataType type;
|
|
int quant_algo = 0;
|
|
int group_size = 0;
|
|
read(d, type);
|
|
read(d, quant_algo);
|
|
read(d, group_size);
|
|
read(d, mDims);
|
|
|
|
init(type, quant_algo, group_size);
|
|
|
|
mPluginProfiler->deserialize(d, mDims, mGemmId);
|
|
|
|
TLLM_CHECK_WITH_INFO(d == a + length,
|
|
"Expected length (%d) != real length (%d). This is often "
|
|
"caused by using different TensorRT-LLM version to build "
|
|
"engine and run engine.",
|
|
(int) length, (int) (d - a));
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::init(nvinfer1::DataType type, int quant_algo, int group_size)
|
|
{
|
|
mType = type;
|
|
mQuantAlgo = quant_algo;
|
|
mGroupSize = group_size;
|
|
|
|
// quant_algo = fp8_alpha * 8 + pre_quant_scale * 4 + zero * 2 + bias
|
|
mPreQuantScaleInputIdx = (quant_algo & PRE_QUANT_SCALE) ? 1 : 0;
|
|
mWeightInputIdx = mPreQuantScaleInputIdx + 1;
|
|
mScalesInputIdx = mWeightInputIdx + 1;
|
|
mZerosInputIdx = (quant_algo & ZERO) ? mScalesInputIdx + 1 : mScalesInputIdx;
|
|
mBiasesInputIdx = (quant_algo & BIAS) ? mZerosInputIdx + 1 : mZerosInputIdx;
|
|
mAlphaInputIdx = (quant_algo & FP8_ALPHA) ? mBiasesInputIdx + 1 : mBiasesInputIdx;
|
|
|
|
if (mType == nvinfer1::DataType::kHALF)
|
|
{
|
|
if (quant_algo & FP8_ALPHA)
|
|
{
|
|
// Hopper style kernels
|
|
if (getSMVersion() < 90)
|
|
{
|
|
TLLM_THROW("W4A(fp)8 kernel is unsupported on pre-Hopper architectures!");
|
|
}
|
|
if (quant_algo & ZERO)
|
|
{
|
|
// has zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<__nv_fp8_e4m3,
|
|
cutlass::int4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_AND_ZEROS, half, half, half>>();
|
|
}
|
|
else
|
|
{
|
|
// no zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<__nv_fp8_e4m3,
|
|
cutlass::int4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_ONLY, half, half, half>>();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (quant_algo & ZERO)
|
|
{
|
|
// has zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<half,
|
|
cutlass::uint4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_AND_ZEROS>>();
|
|
}
|
|
else
|
|
{
|
|
// no zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<half,
|
|
cutlass::uint4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_ONLY>>();
|
|
}
|
|
}
|
|
}
|
|
#if defined(ENABLE_BF16)
|
|
else if (mType == nvinfer1::DataType::kBF16)
|
|
{
|
|
if (quant_algo & FP8_ALPHA)
|
|
{
|
|
// Hopper style kernels
|
|
if (getSMVersion() < 90)
|
|
{
|
|
TLLM_THROW("FP8 is unsupported on pre-Hopper architectures!");
|
|
}
|
|
TLLM_THROW("FP8 is unsupported on with BF16 scales and zero-points!");
|
|
}
|
|
else
|
|
{
|
|
if (quant_algo & ZERO)
|
|
{
|
|
// has zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<__nv_bfloat16,
|
|
cutlass::uint4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_AND_ZEROS>>();
|
|
}
|
|
else
|
|
{
|
|
// no zeros
|
|
m_weightOnlyGroupwiseGemmRunner
|
|
= std::make_shared<tensorrt_llm::kernels::cutlass_kernels::CutlassFpAIntBGemmRunner<__nv_bfloat16,
|
|
cutlass::uint4b_t, cutlass::WeightOnlyQuantOp::FINEGRAINED_SCALE_ONLY>>();
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
else
|
|
{
|
|
TLLM_THROW("Unsupported data type");
|
|
}
|
|
mCudaKernelEnabled
|
|
= tensorrt_llm::kernels::isWeightOnlyBatchedGemvEnabled(tensorrt_llm::kernels::WeightOnlyQuantType::Int4b);
|
|
mPluginProfiler->setQuantAlgo(mQuantAlgo);
|
|
mPluginProfiler->setGroupSize(mGroupSize);
|
|
|
|
mGemmId = GemmIdCore(mDims.n, mDims.k, mType);
|
|
}
|
|
|
|
// IPluginV2DynamicExt Methods
|
|
nvinfer1::IPluginV2DynamicExt* WeightOnlyGroupwiseQuantMatmulPlugin::clone() const noexcept
|
|
{
|
|
auto* plugin = new WeightOnlyGroupwiseQuantMatmulPlugin(*this);
|
|
return plugin;
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::configGemm()
|
|
{
|
|
mPluginProfiler->profileTactics(m_weightOnlyGroupwiseGemmRunner, mType, mDims, mGemmId);
|
|
}
|
|
|
|
nvinfer1::DimsExprs WeightOnlyGroupwiseQuantMatmulPlugin::getOutputDimensions(
|
|
int outputIndex, const nvinfer1::DimsExprs* inputs, int nbInputs, nvinfer1::IExprBuilder& exprBuilder) noexcept
|
|
{
|
|
|
|
// inputs
|
|
// 0 activations [M, K]
|
|
// 1 pre-quant scales [K] (optional)
|
|
// 2 weights [K, N/2]
|
|
// 3 scales [K // group_size, N]
|
|
// 4 zeros [K // group_size, N] (optional)
|
|
// 5 biases [M] (optional)
|
|
// 6 alpha [1] (optional)
|
|
|
|
try
|
|
{
|
|
TLLM_CHECK(nbInputs == mAlphaInputIdx + 1);
|
|
TLLM_CHECK(outputIndex == 0);
|
|
const int nbDimsA = inputs[0].nbDims;
|
|
const int nbDimsB = inputs[mWeightInputIdx].nbDims;
|
|
TLLM_CHECK(nbDimsA >= 2);
|
|
TLLM_CHECK(nbDimsB == 2);
|
|
DimsExprs ret;
|
|
ret.nbDims = nbDimsA;
|
|
for (int ii = 0; ii < nbDimsA - 1; ++ii)
|
|
{
|
|
ret.d[ii] = inputs[0].d[ii];
|
|
}
|
|
|
|
// int4 weight only quant
|
|
ret.d[nbDimsA - 1] = exprBuilder.constant(inputs[mWeightInputIdx].d[1]->getConstantValue() * FP16_INT4_RATIO);
|
|
|
|
return ret;
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
caughtError(e);
|
|
}
|
|
return DimsExprs{};
|
|
}
|
|
|
|
bool WeightOnlyGroupwiseQuantMatmulPlugin::supportsFormatCombination(
|
|
int pos, const nvinfer1::PluginTensorDesc* inOut, int nbInputs, int nbOutputs) noexcept
|
|
{
|
|
if (pos < mAlphaInputIdx + 2)
|
|
{
|
|
if (pos == mWeightInputIdx)
|
|
{
|
|
// weights
|
|
return inOut[mWeightInputIdx].type == mType && inOut[mWeightInputIdx].format == TensorFormat::kLINEAR;
|
|
}
|
|
else if ((mQuantAlgo & FP8_ALPHA) && pos == mAlphaInputIdx)
|
|
{
|
|
return inOut[pos].type == nvinfer1::DataType::kFLOAT && inOut[pos].format == TensorFormat::kLINEAR;
|
|
}
|
|
else
|
|
{
|
|
return inOut[pos].type == mType && inOut[pos].format == TensorFormat::kLINEAR;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Never should be here
|
|
assert(false);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::configurePlugin(const nvinfer1::DynamicPluginTensorDesc* in, int nbInputs,
|
|
const nvinfer1::DynamicPluginTensorDesc* out, int nbOutputs) noexcept
|
|
{
|
|
const auto minM = std::accumulate(in[0].min.d, in[0].min.d + in[0].min.nbDims - 1, 1, std::multiplies<int>());
|
|
const auto maxM = std::accumulate(in[0].max.d, in[0].max.d + in[0].max.nbDims - 1, 1, std::multiplies<int>());
|
|
|
|
const int maxK = in[0].max.d[in[0].max.nbDims - 1];
|
|
|
|
// Quantized weights are packed in FP16 format (INT4*4 -> FP16)
|
|
const int maxN = in[mWeightInputIdx].max.d[1] * FP16_INT4_RATIO;
|
|
|
|
const auto K = maxK;
|
|
const auto N = maxN / FP16_INT4_RATIO;
|
|
|
|
if (!mDims.isInitialized())
|
|
{
|
|
mDims = {minM, maxM, N, K};
|
|
}
|
|
mGemmId = {N, K, mType};
|
|
|
|
size_t smoothedActSize = static_cast<size_t>(maxM) * static_cast<size_t>(maxK)
|
|
* (in[0].desc.type == nvinfer1::DataType::kFLOAT ? sizeof(float) : sizeof(half));
|
|
m_workspaceMaxSize = smoothedActSize + m_weightOnlyGroupwiseGemmRunner->getWorkspaceSize(maxM, maxN, maxK);
|
|
}
|
|
|
|
size_t WeightOnlyGroupwiseQuantMatmulPlugin::getWorkspaceSize(const nvinfer1::PluginTensorDesc* inputs, int nbInputs,
|
|
const nvinfer1::PluginTensorDesc* outputs, int nbOutputs) const noexcept
|
|
{
|
|
return m_workspaceMaxSize;
|
|
}
|
|
|
|
int WeightOnlyGroupwiseQuantMatmulPlugin::enqueue(const nvinfer1::PluginTensorDesc* inputDesc,
|
|
const nvinfer1::PluginTensorDesc* outputDesc, const void* const* inputs, void* const* outputs, void* workspace,
|
|
cudaStream_t stream) noexcept
|
|
{
|
|
// inputs
|
|
// 0 activations [M, K]
|
|
// 1 pre-quant scales [K]
|
|
// 2 weights [K, N/2]
|
|
// 3 scales [K // group_size, N]
|
|
// 4 zeros [K // group_size, N]
|
|
// 5 biases [M]
|
|
// 6 alpha [1]
|
|
// outputs
|
|
// mat [M, N]
|
|
|
|
int m = 1;
|
|
for (int ii = 0; ii < inputDesc[0].dims.nbDims - 1; ++ii)
|
|
{
|
|
m *= inputDesc[0].dims.d[ii];
|
|
}
|
|
const int n = inputDesc[mWeightInputIdx].dims.d[1];
|
|
const int k = inputDesc[0].dims.d[inputDesc[0].dims.nbDims - 1];
|
|
|
|
int smVersion = getSMVersion();
|
|
bool use_cuda_kernel = m < SMALL_M_FAST_PATH && mCudaKernelEnabled;
|
|
#if defined(ENABLE_BF16)
|
|
// CUDA kernels assume FP16 activations for Hopper
|
|
bool force_disable_cuda_kernel = smVersion == 90 && mType == nvinfer1::DataType::kBF16;
|
|
use_cuda_kernel = use_cuda_kernel && !force_disable_cuda_kernel;
|
|
#endif
|
|
bool use_pre_quant_scale = mQuantAlgo & PRE_QUANT_SCALE;
|
|
|
|
const half* zeros_ptr = (mQuantAlgo & ZERO) ? reinterpret_cast<const half*>(inputs[mZerosInputIdx]) : nullptr;
|
|
const half* biases_ptr = (mQuantAlgo & BIAS) ? reinterpret_cast<const half*>(inputs[mBiasesInputIdx]) : nullptr;
|
|
const half* act_ptr = reinterpret_cast<const half*>(inputs[0]);
|
|
float alpha = 1.0;
|
|
if (mQuantAlgo & FP8_ALPHA)
|
|
{
|
|
cudaMemcpy(&alpha, const_cast<void*>(inputs[mAlphaInputIdx]), sizeof(float), cudaMemcpyDeviceToHost);
|
|
}
|
|
|
|
if (use_pre_quant_scale && !use_cuda_kernel)
|
|
{
|
|
// Apply pre-quant per channel scale on activations
|
|
act_ptr = reinterpret_cast<const half*>(workspace);
|
|
if (mType == nvinfer1::DataType::kHALF)
|
|
{
|
|
if (mQuantAlgo & FP8_ALPHA)
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<half, __nv_fp8_e4m3>(
|
|
reinterpret_cast<__nv_fp8_e4m3*>(workspace), reinterpret_cast<const half*>(inputs[0]),
|
|
reinterpret_cast<const half*>(inputs[mPreQuantScaleInputIdx]), m, k, stream);
|
|
}
|
|
else
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<half, half>(
|
|
reinterpret_cast<half*>(workspace), reinterpret_cast<const half*>(inputs[0]),
|
|
reinterpret_cast<const half*>(inputs[mPreQuantScaleInputIdx]), m, k, stream);
|
|
}
|
|
}
|
|
#if defined(ENABLE_BF16)
|
|
else if (mType == nvinfer1::DataType::kBF16)
|
|
{
|
|
if (mQuantAlgo & FP8_ALPHA)
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<__nv_bfloat16, __nv_fp8_e4m3>(
|
|
reinterpret_cast<__nv_fp8_e4m3*>(workspace), reinterpret_cast<const __nv_bfloat16*>(inputs[0]),
|
|
reinterpret_cast<const __nv_bfloat16*>(inputs[mPreQuantScaleInputIdx]), m, k, stream);
|
|
}
|
|
else
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<__nv_bfloat16, __nv_bfloat16>(
|
|
reinterpret_cast<__nv_bfloat16*>(workspace), reinterpret_cast<const __nv_bfloat16*>(inputs[0]),
|
|
reinterpret_cast<const __nv_bfloat16*>(inputs[mPreQuantScaleInputIdx]), m, k, stream);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#if defined(ENABLE_BF16)
|
|
TLLM_CHECK_WITH_INFO(mType == nvinfer1::DataType::kHALF || mType == nvinfer1::DataType::kBF16,
|
|
"No valid weightOnlyGropwiseQuantMatmul configuration");
|
|
#else
|
|
TLLM_CHECK_WITH_INFO(mType == nvinfer1::DataType::kHALF, "No valid weightOnlyGropwiseQuantMatmul configuration");
|
|
#endif
|
|
|
|
tensorrt_llm::kernels::WeightOnlyActivationType weight_only_act_type;
|
|
// Quantized weights are packed in FP16 format (INT4*4 -> FP16)
|
|
int real_n = n * FP16_INT4_RATIO;
|
|
if (mType == nvinfer1::DataType::kHALF)
|
|
{
|
|
weight_only_act_type = tensorrt_llm::kernels::WeightOnlyActivationType::FP16;
|
|
}
|
|
else if (mType == nvinfer1::DataType::kBF16)
|
|
{
|
|
weight_only_act_type = tensorrt_llm::kernels::WeightOnlyActivationType::BF16;
|
|
}
|
|
|
|
if (smVersion == 90)
|
|
{
|
|
// Hopper style kernels
|
|
if (use_cuda_kernel)
|
|
{
|
|
// Use CUDA kernels for small batch size
|
|
// The CUDA kernel is designed for ColumnMajorTileInterleave weight layout used in fpAIntB cutlass kernel
|
|
// when sm >= 75 and the preprocessing of cutlass on sm70 does not interleave the weights.
|
|
const void* pre_quant_scale_ptr = nullptr;
|
|
if (use_pre_quant_scale)
|
|
pre_quant_scale_ptr = inputs[mPreQuantScaleInputIdx];
|
|
void* cuda_kernel_act_ptr = const_cast<void*>(reinterpret_cast<const void*>(inputs[0]));
|
|
void* cuda_kernel_act_scale_ptr = const_cast<void*>(reinterpret_cast<const void*>(pre_quant_scale_ptr));
|
|
void* cuda_kernel_weight_ptr = const_cast<void*>(reinterpret_cast<const void*>(inputs[mWeightInputIdx]));
|
|
void* cuda_kernel_scales_ptr = const_cast<void*>(reinterpret_cast<const void*>(inputs[mScalesInputIdx]));
|
|
void* cuda_kernel_zeros_ptr = const_cast<void*>(reinterpret_cast<const void*>(zeros_ptr));
|
|
void* cuda_kernel_bias_ptr = const_cast<void*>(reinterpret_cast<const void*>(biases_ptr));
|
|
void* cuda_kernel_out_ptr = const_cast<void*>(reinterpret_cast<const void*>(outputs[0]));
|
|
|
|
tensorrt_llm::kernels::weight_only::Params params{cuda_kernel_act_ptr, cuda_kernel_act_scale_ptr,
|
|
cuda_kernel_weight_ptr, cuda_kernel_scales_ptr, cuda_kernel_zeros_ptr, cuda_kernel_bias_ptr,
|
|
cuda_kernel_out_ptr, alpha, m, real_n, k, mGroupSize,
|
|
tensorrt_llm::kernels::weight_only::KernelType::W4A16};
|
|
tensorrt_llm::kernels::weight_only::kernel_launcher(params, stream);
|
|
}
|
|
else
|
|
{
|
|
// Use cutlass kernels for large batch size
|
|
const int ws_bytes = m_weightOnlyGroupwiseGemmRunner->getWorkspaceSize(m, n, k);
|
|
|
|
int32_t* weight_ptr = const_cast<int32_t*>(reinterpret_cast<const int32_t*>(inputs[mWeightInputIdx]));
|
|
|
|
const auto& bestTactic = mPluginProfiler->getBestConfig(m, mGemmId);
|
|
TLLM_CHECK_WITH_INFO(bestTactic, "No valid weight only groupwise GEMM tactic");
|
|
m_weightOnlyGroupwiseGemmRunner->gemm(act_ptr, weight_ptr, inputs[mScalesInputIdx], zeros_ptr, biases_ptr,
|
|
alpha, outputs[0], m, real_n, k, mGroupSize, *bestTactic,
|
|
reinterpret_cast<char*>(workspace) + m * k * sizeof(half), ws_bytes, stream);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Pre-Hopper architectures
|
|
if (use_cuda_kernel)
|
|
{
|
|
// Use CUDA kernels for small batch size
|
|
// The CUDA kernel is designed for ColumnMajorTileInterleave weight layout used in fpAIntB cutlass kernel
|
|
// when sm >= 75 and the preprocessing of cutlass on sm70 does not interleave the weights.
|
|
const void* pre_quant_scale = nullptr;
|
|
if (use_pre_quant_scale)
|
|
pre_quant_scale = inputs[mPreQuantScaleInputIdx];
|
|
tensorrt_llm::kernels::WeightOnlyParams params{reinterpret_cast<const uint8_t*>(inputs[mWeightInputIdx]),
|
|
inputs[mScalesInputIdx], zeros_ptr, act_ptr, pre_quant_scale, biases_ptr, outputs[0], m, real_n, k,
|
|
mGroupSize, tensorrt_llm::kernels::WeightOnlyQuantType::Int4b,
|
|
tensorrt_llm::kernels::WeightOnlyType::GroupWise,
|
|
tensorrt_llm::kernels::WeightOnlyActivationFunctionType::Identity, weight_only_act_type};
|
|
tensorrt_llm::kernels::weight_only_batched_gemv_launcher(params, stream);
|
|
}
|
|
else
|
|
{
|
|
// Use cutlass kernels for large batch size
|
|
const int ws_bytes = m_weightOnlyGroupwiseGemmRunner->getWorkspaceSize(m, n, k);
|
|
|
|
int32_t* weight_ptr = const_cast<int32_t*>(reinterpret_cast<const int32_t*>(inputs[mWeightInputIdx]));
|
|
|
|
const auto& bestTactic = mPluginProfiler->getBestConfig(m, mGemmId);
|
|
TLLM_CHECK_WITH_INFO(bestTactic,
|
|
"No valid weight only groupwise GEMM tactic(It is usually caused by the failure to execute all "
|
|
"candidate "
|
|
"configurations of the CUTLASS kernel, please pay attention to the warning information when building "
|
|
"the "
|
|
"engine.)");
|
|
m_weightOnlyGroupwiseGemmRunner->gemm(act_ptr, weight_ptr, inputs[mScalesInputIdx], zeros_ptr, biases_ptr,
|
|
outputs[0], m, real_n, k, mGroupSize, *bestTactic,
|
|
reinterpret_cast<char*>(workspace) + m * k * sizeof(half), ws_bytes, stream);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// IPluginV2Ext Methods
|
|
nvinfer1::DataType WeightOnlyGroupwiseQuantMatmulPlugin::getOutputDataType(
|
|
int index, const nvinfer1::DataType* inputTypes, int nbInputs) const noexcept
|
|
{
|
|
TLLM_CHECK(index == 0);
|
|
return mType;
|
|
}
|
|
|
|
// IPluginV2 Methods
|
|
|
|
const char* WeightOnlyGroupwiseQuantMatmulPlugin::getPluginType() const noexcept
|
|
{
|
|
return WOQ_GROUPWISE_MATMUL_PLUGIN_NAME;
|
|
}
|
|
|
|
const char* WeightOnlyGroupwiseQuantMatmulPlugin::getPluginVersion() const noexcept
|
|
{
|
|
return WOQ_GROUPWISE_MATMUL_PLUGIN_VERSION;
|
|
}
|
|
|
|
int WeightOnlyGroupwiseQuantMatmulPlugin::getNbOutputs() const noexcept
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int WeightOnlyGroupwiseQuantMatmulPlugin::initialize() noexcept
|
|
{
|
|
configGemm();
|
|
return 0;
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::terminate() noexcept {}
|
|
|
|
size_t WeightOnlyGroupwiseQuantMatmulPlugin::getSerializationSize() const noexcept
|
|
{
|
|
return sizeof(nvinfer1::DataType) + // mType
|
|
sizeof(int) + // mQuantAlgo
|
|
sizeof(int) + // mGroupSize
|
|
sizeof(mDims) + // Dimensions
|
|
mPluginProfiler->getSerializationSize(mGemmId); // selected tactics container size
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::serialize(void* buffer) const noexcept
|
|
{
|
|
char *d = static_cast<char*>(buffer), *a = d;
|
|
write(d, mType);
|
|
write(d, mQuantAlgo);
|
|
write(d, mGroupSize);
|
|
write(d, mDims);
|
|
|
|
mPluginProfiler->serialize(d, mGemmId);
|
|
assert(d == a + getSerializationSize());
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::destroy() noexcept
|
|
{
|
|
// This gets called when the network containing plugin is destroyed
|
|
delete this;
|
|
}
|
|
|
|
///////////////
|
|
|
|
WeightOnlyGroupwiseQuantMatmulPluginCreator::WeightOnlyGroupwiseQuantMatmulPluginCreator()
|
|
{
|
|
// Fill PluginFieldCollection with PluginField arguments metadata
|
|
mPluginAttributes.clear();
|
|
mPluginAttributes.emplace_back(PluginField("type_id", nullptr, PluginFieldType::kINT32, 1));
|
|
mPluginAttributes.emplace_back(PluginField("quant_algo", nullptr, PluginFieldType::kINT32, 1));
|
|
mPluginAttributes.emplace_back(PluginField("group_size", nullptr, PluginFieldType::kINT32, 1));
|
|
mFC.nbFields = mPluginAttributes.size();
|
|
mFC.fields = mPluginAttributes.data();
|
|
}
|
|
|
|
const char* WeightOnlyGroupwiseQuantMatmulPluginCreator::getPluginName() const noexcept
|
|
{
|
|
return WOQ_GROUPWISE_MATMUL_PLUGIN_NAME;
|
|
}
|
|
|
|
const char* WeightOnlyGroupwiseQuantMatmulPluginCreator::getPluginVersion() const noexcept
|
|
{
|
|
return WOQ_GROUPWISE_MATMUL_PLUGIN_VERSION;
|
|
}
|
|
|
|
const PluginFieldCollection* WeightOnlyGroupwiseQuantMatmulPluginCreator::getFieldNames() noexcept
|
|
{
|
|
return &mFC;
|
|
}
|
|
|
|
IPluginV2* WeightOnlyGroupwiseQuantMatmulPluginCreator::createPlugin(
|
|
const char* name, const PluginFieldCollection* fc) noexcept
|
|
{
|
|
const PluginField* fields = fc->fields;
|
|
nvinfer1::DataType type;
|
|
int QuantAlgo;
|
|
int GroupSize;
|
|
// Read configurations from each fields
|
|
for (int i = 0; i < fc->nbFields; ++i)
|
|
{
|
|
const char* attrName = fields[i].name;
|
|
if (!strcmp(attrName, "quant_algo"))
|
|
{
|
|
TLLM_CHECK(fields[i].type == PluginFieldType::kINT32);
|
|
QuantAlgo = static_cast<int>(*(static_cast<const int*>(fields[i].data)));
|
|
}
|
|
else if (!strcmp(attrName, "group_size"))
|
|
{
|
|
TLLM_CHECK(fields[i].type == PluginFieldType::kINT32);
|
|
GroupSize = static_cast<int>(*(static_cast<const int*>(fields[i].data)));
|
|
}
|
|
else if (!strcmp(attrName, "type_id"))
|
|
{
|
|
TLLM_CHECK(fields[i].type == PluginFieldType::kINT32);
|
|
type = static_cast<nvinfer1::DataType>(*(static_cast<const nvinfer1::DataType*>(fields[i].data)));
|
|
}
|
|
}
|
|
try
|
|
{
|
|
// WeightOnlyGroupwiseQuantMatmulPluginCreator is unique and shared for an engine generation
|
|
// Create plugin profiler with shared tactics map
|
|
auto pluginProfiler = gemmPluginProfileManager.createGemmPluginProfiler(/* inference */ false);
|
|
auto* obj = new WeightOnlyGroupwiseQuantMatmulPlugin(type, QuantAlgo, GroupSize, pluginProfiler);
|
|
obj->setPluginNamespace(mNamespace.c_str());
|
|
return obj;
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
caughtError(e);
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
IPluginV2* WeightOnlyGroupwiseQuantMatmulPluginCreator::deserializePlugin(
|
|
const char* name, const void* serialData, size_t serialLength) noexcept
|
|
{
|
|
// This object will be deleted when the network is destroyed, which will
|
|
// call weightOnlyGroupwiseQuantMatmulPlugin::destroy()
|
|
try
|
|
{
|
|
// Create plugin profiler with private tactics map which is read from the serialized engine
|
|
auto pluginProfiler = gemmPluginProfileManager.createGemmPluginProfiler(/* inference */ true);
|
|
auto* obj = new WeightOnlyGroupwiseQuantMatmulPlugin(serialData, serialLength, pluginProfiler);
|
|
obj->setPluginNamespace(mNamespace.c_str());
|
|
return obj;
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
caughtError(e);
|
|
}
|
|
return nullptr;
|
|
}
|