/* * Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. * * 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/common/assert.h" #include "tensorrt_llm/common/cudaUtils.h" #include "tensorrt_llm/runtime/iTensor.h" #include namespace tensorrt_llm::runtime { class MedusaModule { public: using TensorPtr = ITensor::SharedPtr; using MedusaChoices = std::vector>; explicit MedusaModule(SizeType32 medusaHeads, SizeType32 maxMedusaTokens) noexcept : mMedusaHeads(medusaHeads) , mMaxMedusaTokens(maxMedusaTokens) , mTokensPerStep(mMaxMedusaTokens + 1) { mNumPackedMasks = tensorrt_llm::common::divUp(mTokensPerStep, 32); } explicit MedusaModule() noexcept : MedusaModule(0, 0) { } MedusaModule(MedusaModule const& o) = default; MedusaModule& operator=(MedusaModule const& o) = default; [[nodiscard]] SizeType32 medusaHeads() const noexcept { return mMedusaHeads; } [[nodiscard]] SizeType32 maxMedusaTokens() const noexcept { return mMaxMedusaTokens; } [[nodiscard]] SizeType32 tokensPerStep() const noexcept { return mTokensPerStep; } [[nodiscard]] SizeType32 numPackedMasks() const noexcept { return mNumPackedMasks; } [[nodiscard]] MedusaChoices const& getMedusaChoices() const noexcept { return mDefaultMedusaChoices; } void initMedusaTensorsFromChoices(MedusaChoices const& choices, std::vector& topKs, TensorPtr& generationInputLengths, TensorPtr& positionOffsets, TensorPtr& treeIds, TensorPtr& paths, TensorPtr& packedMask, SizeType32& totalPaths) const noexcept; private: using Prefix = uint64_t; static SizeType32 constexpr PREFIX_CHUNK_SIZE_BITS = 4; static SizeType32 constexpr PREFIX_MAX_VALUE = 16; struct MedusaTreeNode { SizeType32 nodeId; SizeType32 depth; SizeType32 parentLinearIdx; SizeType32 linearIdx; std::vector childLinearIndices; }; SizeType32 computePathsAndMask( std::vector const& tree, TensorPtr& packedMask, TensorPtr& paths) const; void copyPackedMask(TensorPtr& mask, SizeType32 srcIdx, SizeType32 dstIdx) const; void setOnePackedMask(TensorPtr& mask, SizeType32 row, SizeType32 col) const; Prefix computePrefix(std::vector const& vec, SizeType32 len) const; void dumpChoices(MedusaChoices const& choices, std::vector const& indices) const; private: SizeType32 mMedusaHeads; SizeType32 mMaxMedusaTokens; SizeType32 mTokensPerStep; SizeType32 mNumPackedMasks; // FIXME(nkorobov): this should come from outside to setup or per request // mc_sim_7b_63 MedusaChoices mDefaultMedusaChoices = {{0}, {0, 0}, {1}, {0, 1}, {2}, {0, 0, 0}, {1, 0}, {0, 2}, {3}, {0, 3}, {4}, {0, 4}, {2, 0}, {0, 5}, {0, 0, 1}, {5}, {0, 6}, {6}, {0, 7}, {0, 1, 0}, {1, 1}, {7}, {0, 8}, {0, 0, 2}, {3, 0}, {0, 9}, {8}, {9}, {1, 0, 0}, {0, 2, 0}, {1, 2}, {0, 0, 3}, {4, 0}, {2, 1}, {0, 0, 4}, {0, 0, 5}, {0, 0, 0, 0}, {0, 1, 1}, {0, 0, 6}, {0, 3, 0}, {5, 0}, {1, 3}, {0, 0, 7}, {0, 0, 8}, {0, 0, 9}, {6, 0}, {0, 4, 0}, {1, 4}, {7, 0}, {0, 1, 2}, {2, 0, 0}, {3, 1}, {2, 2}, {8, 0}, {0, 5, 0}, {1, 5}, {1, 0, 1}, {0, 2, 1}, {9, 0}, {0, 6, 0}, {0, 0, 0, 1}, {1, 6}, {0, 7, 0}}; }; } // namespace tensorrt_llm::runtime