mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* Update TensorRT-LLM --------- Co-authored-by: Kota Tsuyuzaki <bloodeagle40234@gmail.com> Co-authored-by: Pzzzzz <hello-cd.plus@hotmail.com> Co-authored-by: Patrick Reiter Horn <patrick.horn@gmail.com>
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <sstream>
|
|
|
|
#include "tensorrt_llm/common/logger.h"
|
|
#include "tensorrt_llm/layers/lookaheadDecodingUtils.h"
|
|
|
|
namespace tensorrt_llm::layers
|
|
{
|
|
|
|
using namespace tensorrt_llm::runtime;
|
|
using TensorPtr = ITensor::SharedPtr;
|
|
|
|
ITensor::UniquePtr slice(
|
|
ITensor::SharedPtr tensor, std::initializer_list<SizeType32> const& offsetDims, size_t const sizeDim)
|
|
{
|
|
auto shape = tensor->getShape();
|
|
TLLM_CHECK(offsetDims.size() > 0);
|
|
TLLM_CHECK(shape.nbDims >= offsetDims.size());
|
|
std::vector<size_t> volumes(shape.nbDims);
|
|
|
|
int i;
|
|
volumes[shape.nbDims - 1] = 1;
|
|
for (i = shape.nbDims - 2; i >= 0; i--)
|
|
{
|
|
volumes[i] = shape.d[i + 1] * volumes[i + 1];
|
|
}
|
|
|
|
size_t offset = 0;
|
|
i = 0;
|
|
for (auto itd = offsetDims.begin(); itd != offsetDims.end(); itd++)
|
|
{
|
|
TLLM_CHECK(0 <= (*itd) && (*itd) < shape.d[i]);
|
|
offset += (*itd) * volumes[i++];
|
|
}
|
|
|
|
ITensor::Shape dims;
|
|
dims.nbDims = shape.nbDims - offsetDims.size() + 1;
|
|
dims.d[0] = sizeDim;
|
|
for (i = 1; i < dims.nbDims; i++)
|
|
{
|
|
dims.d[i] = shape.d[i - 1 + offsetDims.size()];
|
|
}
|
|
|
|
size_t size = ITensor::volume(dims);
|
|
|
|
return std::make_unique<TensorView>(std::move(tensor), offset, size, dims);
|
|
}
|
|
|
|
ITensor::UniquePtr slice(ITensor::SharedPtr tensor, std::initializer_list<SizeType32> const& offsetDims)
|
|
{
|
|
auto result = slice(tensor, offsetDims, 1);
|
|
if (result->getShape().nbDims > 1)
|
|
{
|
|
result->squeeze(0);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
} // namespace tensorrt_llm::layers
|