TensorRT-LLMs/cpp/tensorrt_llm/runtime/torchView.h
Kaiyu Xie 655524dd82
Update TensorRT-LLM (#1168)
* Update TensorRT-LLM

---------

Co-authored-by: Bhuvanesh Sridharan <bhuvan.sridharan@gmail.com>
Co-authored-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
2024-02-27 17:37:34 +08:00

112 lines
2.8 KiB
C++

/*
* Copyright (c) 2022-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/runtime/iTensor.h"
#include "tensorrt_llm/runtime/torchUtils.h"
#include <ATen/ATen.h>
#include <torch/types.h>
namespace tensorrt_llm::runtime
{
class TorchView : virtual public ITensor
{
public:
static ITensor::UniquePtr of(at::Tensor&& tensor)
{
return ITensor::UniquePtr{new TorchView{std::move(tensor)}};
}
static ITensor::UniquePtr of(at::Tensor tensor)
{
return ITensor::UniquePtr{new TorchView{std::move(tensor)}};
}
void* data() override
{
return TLLM_LIKELY(getSize() > 0) ? mTensor.data_ptr() : nullptr;
}
[[nodiscard]] void const* data() const override
{
return TLLM_LIKELY(getSize() > 0) ? mTensor.data_ptr() : nullptr;
}
[[nodiscard]] size_t getSize() const override
{
return mTensor.numel();
}
[[nodiscard]] std::size_t getCapacity() const override
{
return mCapacity;
}
[[nodiscard]] DataType getDataType() const override
{
return TorchUtils::dataType(mTensor.scalar_type());
}
[[nodiscard]] MemoryType getMemoryType() const override
{
return mTensor.is_cuda() ? MemoryType::kGPU : mTensor.is_pinned() ? MemoryType::kPINNED : MemoryType::kCPU;
}
void release() override
{
resize(0);
}
[[nodiscard]] Shape const& getShape() const override
{
return mDims;
}
void reshape(Shape const& dims) override
{
try
{
mTensor.resize_(TorchUtils::shape(dims));
}
catch (c10::Error const& e)
{
TLLM_THROW("%s", e.what_without_backtrace());
}
mDims = dims;
if (auto const newSize = volumeNonNegative(dims); mCapacity < newSize)
{
mCapacity = newSize;
}
}
private:
explicit TorchView(at::Tensor&& tensor)
: mTensor(tensor)
, mDims{TorchUtils::shape(mTensor.sizes())}
, mCapacity{static_cast<std::size_t>(mTensor.numel())}
{
TLLM_CHECK(mTensor.is_contiguous());
};
at::Tensor mTensor;
Shape mDims;
std::size_t mCapacity;
};
} // namespace tensorrt_llm::runtime