mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
Co-authored-by: DreamGenX <x@dreamgen.com> Co-authored-by: Ace-RR <78812427+Ace-RR@users.noreply.github.com> Co-authored-by: bprus <39293131+bprus@users.noreply.github.com> Co-authored-by: janpetrov <janpetrov@icloud.com>
365 lines
12 KiB
C++
365 lines
12 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: Copyright (c) 1993-2023 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.
|
|
*/
|
|
#ifndef TRT_MIXTURE_OF_EXPERTS_PLUGIN_H
|
|
#define TRT_MIXTURE_OF_EXPERTS_PLUGIN_H
|
|
|
|
#include "NvInferPlugin.h"
|
|
#include "tensorrt_llm/common/quantization.h"
|
|
#include "tensorrt_llm/kernels/mixtureOfExperts/moe_kernels.h"
|
|
#include "tensorrt_llm/plugins/common/plugin.h"
|
|
#include <cassert>
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace tensorrt_llm::plugins
|
|
{
|
|
class MixtureOfExpertsGemmProfiler;
|
|
using MOEParallelismConfig = tensorrt_llm::kernels::MOEParallelismConfig;
|
|
using MixtureOfExpertsPluginProfilerPtr = std::shared_ptr<MixtureOfExpertsGemmProfiler>;
|
|
|
|
struct GemmIDMoe
|
|
{
|
|
int num_experts{};
|
|
int moe_k{};
|
|
MOEParallelismConfig parallelism_config{};
|
|
int64_t hidden{};
|
|
int64_t inter{};
|
|
tensorrt_llm::ActivationType actfn{};
|
|
nvinfer1::DataType dtype{};
|
|
nvinfer1::DataType wdtype{};
|
|
tensorrt_llm::common::QuantMode quant_mode;
|
|
|
|
bool operator==(GemmIDMoe const& id) const
|
|
{
|
|
return id.num_experts == num_experts && id.moe_k == moe_k && id.parallelism_config == parallelism_config
|
|
&& id.hidden == hidden && id.inter == inter && id.actfn == actfn && id.dtype == dtype && id.wdtype == wdtype
|
|
&& id.quant_mode == quant_mode;
|
|
}
|
|
|
|
friend std::ostream& operator<<(std::ostream& out, GemmIDMoe const& id)
|
|
{
|
|
out << "experts, k, parallelism_config, hidden, inter, actfn, dtype, weight "
|
|
"type, parallelism mode="
|
|
<< id.num_experts << "," << id.moe_k << "," << id.parallelism_config << "," << id.hidden << "," << id.inter
|
|
<< "," << static_cast<int>(id.actfn) << "," << static_cast<int>(id.dtype) << ","
|
|
<< static_cast<int>(id.wdtype) << "," << id.quant_mode.value();
|
|
return out;
|
|
}
|
|
};
|
|
|
|
// Hash of GemmIDMoe
|
|
struct GemmIDMoeHash
|
|
{
|
|
std::size_t operator()(GemmIDMoe const& id) const
|
|
{
|
|
size_t hash = std::hash<int>{}(id.num_experts);
|
|
hash ^= std::hash<int>{}(id.moe_k);
|
|
hash ^= std::hash<int>{}(id.parallelism_config.tp_size);
|
|
hash ^= std::hash<int>{}(id.parallelism_config.ep_size);
|
|
hash ^= std::hash<int>{}(id.parallelism_config.tp_rank);
|
|
hash ^= std::hash<int>{}(id.parallelism_config.ep_rank);
|
|
hash ^= std::hash<int>{}(id.hidden);
|
|
hash ^= std::hash<int>{}(id.inter);
|
|
hash ^= std::hash<int>{}(static_cast<int>(id.actfn));
|
|
hash ^= std::hash<int>{}(static_cast<int>(id.dtype));
|
|
hash ^= std::hash<int>{}(static_cast<int>(id.wdtype));
|
|
hash ^= std::hash<int>{}(static_cast<int>(id.quant_mode.value()));
|
|
return hash;
|
|
}
|
|
};
|
|
|
|
class MixtureOfExpertsPlugin : public nvinfer1::IPluginV2DynamicExt
|
|
{
|
|
public:
|
|
using MOEParallelismConfig = tensorrt_llm::kernels::MOEParallelismConfig;
|
|
using MOEExpertScaleNormalizationMode = tensorrt_llm::kernels::MOEExpertScaleNormalizationMode;
|
|
|
|
MixtureOfExpertsPlugin() = delete;
|
|
MixtureOfExpertsPlugin(int number_of_experts, int top_k, int expert_hidden_size, int expert_inter_size,
|
|
tensorrt_llm::ActivationType activation_type, nvinfer1::DataType type, nvinfer1::DataType weight_type,
|
|
nvinfer1::DataType output_type, tensorrt_llm::common::QuantMode quant_mode, bool use_finished, bool use_bias,
|
|
int tp_size, int tp_rank, int ep_size, int ep_rank, MOEExpertScaleNormalizationMode normalization_mode,
|
|
MixtureOfExpertsPluginProfilerPtr plugin_profiler_ptr);
|
|
MixtureOfExpertsPlugin(void const* data, size_t length, MixtureOfExpertsPluginProfilerPtr plugin_profiler_ptr);
|
|
MixtureOfExpertsPlugin(MixtureOfExpertsPlugin const&);
|
|
|
|
void init();
|
|
|
|
~MixtureOfExpertsPlugin() override = default;
|
|
|
|
// IPluginV2DynamicExt Methods
|
|
nvinfer1::IPluginV2DynamicExt* clone() const noexcept override;
|
|
nvinfer1::DimsExprs getOutputDimensions(int outputIndex, nvinfer1::DimsExprs const* inputs, int nbInputs,
|
|
nvinfer1::IExprBuilder& exprBuilder) noexcept override;
|
|
bool supportsFormatCombination(
|
|
int pos, nvinfer1::PluginTensorDesc const* inOut, int nbInputs, int nbOutputs) noexcept override;
|
|
void configurePlugin(nvinfer1::DynamicPluginTensorDesc const* in, int nbInputs,
|
|
nvinfer1::DynamicPluginTensorDesc const* out, int nbOutputs) noexcept override;
|
|
size_t getWorkspaceSize(nvinfer1::PluginTensorDesc const* inputs, int nbInputs,
|
|
nvinfer1::PluginTensorDesc const* outputs, int nbOutputs) const noexcept override;
|
|
int enqueue(nvinfer1::PluginTensorDesc const* inputDesc, nvinfer1::PluginTensorDesc const* outputDesc,
|
|
void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept override;
|
|
|
|
// IPluginV2Ext Methods
|
|
nvinfer1::DataType getOutputDataType(
|
|
int index, nvinfer1::DataType const* inputTypes, int nbInputs) const noexcept override;
|
|
|
|
// IPluginV2 Methods
|
|
char const* getPluginType() const noexcept override;
|
|
char const* getPluginVersion() const noexcept override;
|
|
|
|
int getNbOutputs() const noexcept override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int initialize() noexcept override;
|
|
void terminate() noexcept override;
|
|
size_t getSerializationSize() const noexcept override;
|
|
void serialize(void* buffer) const noexcept override;
|
|
void destroy() noexcept override;
|
|
void setPluginNamespace(char const* pluginNamespace) noexcept override;
|
|
char const* getPluginNamespace() const noexcept override;
|
|
|
|
private:
|
|
friend class MixtureOfExpertsGemmProfiler;
|
|
std::unique_ptr<kernels::CutlassMoeFCRunnerInterface> mMOERunner{};
|
|
int mNumExperts{};
|
|
int mK{};
|
|
int64_t mExpertHiddenSize{};
|
|
int64_t mExpertInterSize{};
|
|
tensorrt_llm::ActivationType mActivationType;
|
|
nvinfer1::DataType mType{};
|
|
nvinfer1::DataType mWeightType{};
|
|
nvinfer1::DataType mOutputType{};
|
|
tensorrt_llm::common::QuantMode mQuantMode;
|
|
bool mUseFinished{};
|
|
bool mUseBias{};
|
|
MOEParallelismConfig mParallelismConfig{};
|
|
MOEExpertScaleNormalizationMode mNormalizationMode{};
|
|
|
|
GemmDims mDims{};
|
|
|
|
// The below are not serialised
|
|
GemmIDMoe mGemmId{};
|
|
|
|
MixtureOfExpertsPluginProfilerPtr mPluginProfiler;
|
|
|
|
const std::string mLayerName{};
|
|
std::string mNamespace{};
|
|
|
|
struct WorkspaceInfo
|
|
{
|
|
void* workspace{};
|
|
void* scale_probs{};
|
|
void* fc2_output{};
|
|
void* src_to_dest_map{};
|
|
void* selected_experts{};
|
|
size_t size{};
|
|
};
|
|
|
|
int64_t getNumTokens(nvinfer1::PluginTensorDesc const* input_tensor) const;
|
|
WorkspaceInfo setupWorkspace(void* base_ptr, int64_t num_tokens) const;
|
|
|
|
kernels::MOEParallelismConfig getParallelismConfig() const;
|
|
kernels::QuantParams getQuantParams(
|
|
void const* scale_1, void const* scale_2, void const* scale_3 = nullptr, void const* scale_4 = nullptr) const;
|
|
|
|
using IndexType = std::int32_t;
|
|
|
|
// Inputs
|
|
constexpr static IndexType getInputTensorIndex()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
constexpr static IndexType getRoutingTensorIndex()
|
|
{
|
|
return getInputTensorIndex() + 1;
|
|
}
|
|
|
|
constexpr static IndexType getExpertWeights1Index()
|
|
{
|
|
return getRoutingTensorIndex() + 1;
|
|
}
|
|
|
|
constexpr static IndexType getExpertWeights2Index()
|
|
{
|
|
return getExpertWeights1Index() + 1;
|
|
}
|
|
|
|
// Conditional inputs, we only allocate a new index if actually used
|
|
bool hasBias() const
|
|
{
|
|
return mUseBias;
|
|
}
|
|
|
|
bool hasFinishedTensor() const
|
|
{
|
|
return mUseFinished;
|
|
}
|
|
|
|
bool hasExpertIntQuantScales() const
|
|
{
|
|
return mQuantMode.hasInt4Weights() || mQuantMode.hasInt8Weights();
|
|
}
|
|
|
|
bool hasExpertFp8QuantScales() const
|
|
{
|
|
return mQuantMode.hasFp8Qdq();
|
|
}
|
|
|
|
bool hasExpertFp8FinalQuantScales() const
|
|
{
|
|
return hasExpertFp8QuantScales() && mOutputType == nvinfer1::DataType::kFP8;
|
|
}
|
|
|
|
IndexType getExpertBias1Index() const
|
|
{
|
|
return getExpertWeights2Index() + hasBias();
|
|
}
|
|
|
|
IndexType getExpertBias2Index() const
|
|
{
|
|
return getExpertBias1Index() + hasBias();
|
|
}
|
|
|
|
IndexType getFinishedTensorIndex() const
|
|
{
|
|
return getExpertBias2Index() + hasFinishedTensor();
|
|
}
|
|
|
|
IndexType getExpertIntQuantScale1Index() const
|
|
{
|
|
return getFinishedTensorIndex() + hasExpertIntQuantScales();
|
|
}
|
|
|
|
IndexType getExpertIntQuantScale2Index() const
|
|
{
|
|
return getExpertIntQuantScale1Index() + hasExpertIntQuantScales();
|
|
}
|
|
|
|
IndexType getExpertFP8Dequant1Index() const
|
|
{
|
|
return getExpertIntQuantScale2Index() + hasExpertFp8QuantScales();
|
|
}
|
|
|
|
IndexType getExpertFP8Quant2Index() const
|
|
{
|
|
return getExpertFP8Dequant1Index() + hasExpertFp8QuantScales();
|
|
}
|
|
|
|
IndexType getExpertFP8Dequant2Index() const
|
|
{
|
|
return getExpertFP8Quant2Index() + hasExpertFp8QuantScales();
|
|
}
|
|
|
|
IndexType getExpertFP8QuantFinalIndex() const
|
|
{
|
|
return getExpertFP8Dequant2Index() + hasExpertFp8FinalQuantScales();
|
|
}
|
|
|
|
IndexType getNbInputs() const
|
|
{
|
|
return getExpertFP8QuantFinalIndex() + 1;
|
|
}
|
|
|
|
// Outputs
|
|
constexpr static IndexType getOutputTensorIndex()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Get the index of the expert shape tuple that represents the inner dimension
|
|
*/
|
|
int getGemmShapeInnerDimIndex() const
|
|
{
|
|
// In weight only mode the shape is transposed
|
|
return hasExpertIntQuantScales() ? 1 : 2;
|
|
}
|
|
|
|
/**
|
|
* Get the index of the expert shape tuple that represents the outer dimension
|
|
*/
|
|
int getGemmShapeOuterDimIndex() const
|
|
{
|
|
// In weight only mode the shape is transposed
|
|
return hasExpertIntQuantScales() ? 2 : 1;
|
|
}
|
|
|
|
/**
|
|
* Get quantization dimension scaling factor
|
|
*/
|
|
int getWeightPackedElements() const
|
|
{
|
|
return mQuantMode.hasInt4Weights() ? 2 : 1;
|
|
}
|
|
};
|
|
|
|
class MixtureOfExpertsGemmProfiler
|
|
: public tensorrt_llm::plugins::GemmPluginProfiler<tensorrt_llm::cutlass_extensions::CutlassGemmConfig,
|
|
MixtureOfExpertsPlugin*, GemmIDMoe, GemmIDMoeHash>
|
|
{
|
|
public:
|
|
MixtureOfExpertsGemmProfiler()
|
|
{
|
|
// NOTE: Do not access mPlugin here, since we are called from the constructor before all fields are init
|
|
}
|
|
|
|
protected:
|
|
using Config = tensorrt_llm::cutlass_extensions::CutlassGemmConfig;
|
|
void runTactic(int m, int n, int k, Config const& tactic, char* workspace, cudaStream_t const& stream) override;
|
|
void computeTmpSize(int maxM, int n, int k) override;
|
|
std::vector<Config> getTactics(int m, int n, int k) const override;
|
|
void initTmpData(int maxM, int n, int k, char* workspace, size_t size, cudaStream_t stream) override;
|
|
|
|
std::vector<size_t> getProfilerWorkspaces(int maxM);
|
|
};
|
|
|
|
class MixtureOfExpertsPluginCreator : public nvinfer1::IPluginCreator
|
|
{
|
|
public:
|
|
MixtureOfExpertsPluginCreator();
|
|
|
|
char const* getPluginName() const noexcept override;
|
|
|
|
char const* getPluginVersion() const noexcept override;
|
|
|
|
nvinfer1::PluginFieldCollection const* getFieldNames() noexcept override;
|
|
|
|
nvinfer1::IPluginV2* createPlugin(char const* name, nvinfer1::PluginFieldCollection const* fc) noexcept override;
|
|
|
|
nvinfer1::IPluginV2* deserializePlugin(
|
|
char const* name, void const* serialData, size_t serialLength) noexcept override;
|
|
|
|
void setPluginNamespace(char const* pluginNamespace) noexcept override;
|
|
|
|
char const* getPluginNamespace() const noexcept override;
|
|
|
|
private:
|
|
GemmPluginProfilerManager<MixtureOfExpertsGemmProfiler> moePluginProfiler;
|
|
static nvinfer1::PluginFieldCollection mFC;
|
|
static std::vector<nvinfer1::PluginField> mPluginAttributes;
|
|
std::string mNamespace;
|
|
};
|
|
|
|
} // namespace tensorrt_llm::plugins
|
|
|
|
#endif // TRT_MIXTURE_OF_EXPERTS_PLUGIN_H
|