mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* Update TensorRT-LLM --------- Co-authored-by: Tltin <TltinDeng01@gmail.com> Co-authored-by: zhaohb <zhaohbcloud@126.com> Co-authored-by: Bradley Heilbrun <brad@repl.it> Co-authored-by: nqbao11 <nqbao11.01@gmail.com> Co-authored-by: Nikhil Varghese <nikhil@bot-it.ai>
531 lines
20 KiB
C++
531 lines
20 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"
|
|
|
|
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;
|
|
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)
|
|
{
|
|
const int originalN = n * INT8_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)
|
|
{
|
|
const int originalN = n * INT8_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(d == a + length);
|
|
}
|
|
|
|
void WeightOnlyGroupwiseQuantMatmulPlugin::init(nvinfer1::DataType type, int quant_algo, int group_size)
|
|
{
|
|
mType = type;
|
|
mQuantAlgo = quant_algo;
|
|
mGroupSize = group_size;
|
|
|
|
// quant_algo = 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;
|
|
|
|
if (mType == nvinfer1::DataType::kHALF)
|
|
{
|
|
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 & 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)
|
|
|
|
try
|
|
{
|
|
TLLM_CHECK(nbInputs == mBiasesInputIdx + 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() * INT8_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 < mBiasesInputIdx + 2)
|
|
{
|
|
if (pos == mWeightInputIdx)
|
|
{
|
|
// weights
|
|
return inOut[mWeightInputIdx].type == nvinfer1::DataType::kINT8
|
|
&& inOut[mWeightInputIdx].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];
|
|
// int8 packed int4 elements
|
|
const int maxN = in[mWeightInputIdx].max.d[1] * INT8_INT4_RATIO;
|
|
|
|
const auto K = maxK;
|
|
const auto N = maxN / INT8_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]
|
|
// 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];
|
|
|
|
// mQuantAlgo = pre_quant_scale * 4 + zero * 2 + bias
|
|
if (mQuantAlgo & PRE_QUANT_SCALE)
|
|
{
|
|
// Apply pre-quant per channel scale on activations
|
|
if (mType == nvinfer1::DataType::kHALF)
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<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)
|
|
{
|
|
tensorrt_llm::kernels::apply_per_channel_scale_kernel_launcher<__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
|
|
}
|
|
|
|
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*>((mQuantAlgo & PRE_QUANT_SCALE) ? workspace : inputs[0]);
|
|
|
|
#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;
|
|
int real_n = n * INT8_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 (m < SMALL_M_FAST_PATH && mCudaKernelEnabled)
|
|
{
|
|
// 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.
|
|
tensorrt_llm::kernels::WeightOnlyParams params{reinterpret_cast<const uint8_t*>(inputs[mWeightInputIdx]),
|
|
inputs[mScalesInputIdx], zeros_ptr, act_ptr, 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");
|
|
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(int) + // mQuantAlgo
|
|
sizeof(int) + // mGroupSize
|
|
sizeof(nvinfer1::DataType) + // mType
|
|
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;
|
|
}
|