TensorRT-LLMs/cpp/tensorrt_llm/executor/multimodalInput.cpp
2026-02-12 00:48:47 -05:00

54 lines
1.8 KiB
C++

/*
* SPDX-FileCopyrightText: Copyright (c) 2025 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 "tensorrt_llm/executor/executor.h"
#include "tensorrt_llm/executor/types.h"
namespace tensorrt_llm::executor
{
MultimodalInput::MultimodalInput(std::vector<std::vector<SizeType32>> multimodalHashes,
std::vector<SizeType32> multimodalPositions, std::vector<SizeType32> multimodalLengths,
std::optional<std::vector<std::optional<std::string>>> multimodalUuids)
: mMultimodalHashes(std::move(multimodalHashes))
, mMultimodalPositions(std::move(multimodalPositions))
, mMultimodalLengths(std::move(multimodalLengths))
, mMultimodalUuids(std::move(multimodalUuids))
{
}
std::vector<std::vector<SizeType32>> MultimodalInput::getMultimodalHashes() const
{
return mMultimodalHashes;
}
std::vector<SizeType32> MultimodalInput::getMultimodalPositions() const
{
return mMultimodalPositions;
}
std::vector<SizeType32> MultimodalInput::getMultimodalLengths() const
{
return mMultimodalLengths;
}
std::optional<std::vector<std::optional<std::string>>> const& MultimodalInput::getMultimodalUuids() const
{
return mMultimodalUuids;
}
} // namespace tensorrt_llm::executor