/* * SPDX-FileCopyrightText: Copyright (c) 1993-2024 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. */ #pragma once #include "tensorrt_llm/plugins/common/plugin.h" #include #include #include #include namespace tensorrt_llm::plugins { class EagleDecodeDraftTokensPlugin : public BasePlugin { public: EagleDecodeDraftTokensPlugin(nvinfer1::DataType type, int32_t layerIdx, int32_t numEagleLayers, bool topKSampling); EagleDecodeDraftTokensPlugin(void const* data, size_t length); ~EagleDecodeDraftTokensPlugin() 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; 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; private: enum class InputIdxEntry : int32_t { // 12 inputs // [num_input_logits, vocab_size_padded] LOGITS = 0, // [batch_size, max_decoding_tokens, max_path_len] PATHS, // [1] NUM_VALID_LOGITS, // [1] USE_DYNAMIC_TREE, // [1] DYNAMIC_TREE_MAX_TOPK, // [batch_size, max_decoding_draft_tokens] INPUT_DRAFT_TOKEN_IDS, // [batch_size] INPUT_DRAFT_LENS, // [batch_size, max_decoding_draft_tokens] INPUT_PREV_SCORES, // [batch_size, max_decoding_draft_tokens] INPUT_CURRENT_EXPAND_INDICES, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] INPUT_ALL_LAYERS_SCORES, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] INPUT_ALL_LAYERS_DRAFT_TOKEN_IDS, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] INPUT_ALL_LAYERS_DRAFT_TOKEN_IDS_PREDECESSOR }; enum class OutputIdxEntry : int32_t { // 8 outputs // [batch_size, max_decoding_draft_tokens] OUTPUT_DRAFT_TOKEN_IDS = 0, // [batch_size] OUTPUT_DRAFT_LENS, // [batch_size, max_decoding_tokens, max_path_len] OUTPUT_PATHS, // [batch_size, max_decoding_draft_tokens] OUTPUT_CURRENT_SCORES, // [batch_size, max_decoding_draft_tokens] OUTPUT_NEXT_EXPAND_INDICES, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] OUTPUT_ALL_LAYERS_SCORES, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] OUTPUT_ALL_LAYERS_DRAFT_TOKEN_IDS, // [batch_size, num_eagle_layers, max_decoding_draft_tokens x max_decoding_draft_tokens] OUTPUT_ALL_LAYERS_DRAFT_TOKEN_IDS_PREDECESSOR }; int32_t getIdx(InputIdxEntry idx) const { return static_cast(idx); } int32_t getIdx(OutputIdxEntry idx) const { return static_cast(idx); } private: template size_t getWorkspaceSizeType(nvinfer1::PluginTensorDesc const* inputs, int nbInputs, nvinfer1::PluginTensorDesc const* outputs, int nbOutputs) const noexcept; template void enqueueType(nvinfer1::PluginTensorDesc const* inputDesc, nvinfer1::PluginTensorDesc const* outputDesc, void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept; template void doTopKSampling(nvinfer1::PluginTensorDesc const* inputDesc, nvinfer1::PluginTensorDesc const* outputDesc, void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept; private: nvinfer1::DataType mDtype; // Logit datatype int32_t mLayerIdx{-1}; // Index of eagle layer int32_t mNumEagleLayers{-1}; // Number of eagle layers bool mTopKSampling; // Use TopK sampling or multinomial sampling }; class EagleDecodeDraftTokensPluginCreator : public BaseCreator { public: EagleDecodeDraftTokensPluginCreator(); 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; private: static nvinfer1::PluginFieldCollection mFC; static std::vector mPluginAttributes; }; } // namespace tensorrt_llm::plugins