Files
xc-llm-ascend/csrc/aclnn_torch_adapter/NPUStorageImpl.cpp

53 lines
1.7 KiB
C++
Raw Permalink Normal View History

// Copyright (c) 2020, Huawei Technologies Co., Ltd
// All rights reserved.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include "NPUStorageImpl.h"
namespace vllm_ascend
{
NPUStorageImpl::NPUStorageImpl(
use_byte_size_t use_byte_size,
size_t size_bytes,
at::DataPtr data_ptr,
at::Allocator *allocator,
bool resizable) : c10::StorageImpl(use_byte_size,
size_bytes,
at::DataPtr(std::move(data_ptr)),
allocator,
resizable)
{
}
void NPUStorageImpl::release_resources()
{
StorageImpl::release_resources();
}
c10::intrusive_ptr<c10::StorageImpl> make_npu_storage_impl(
c10::StorageImpl::use_byte_size_t,
c10::SymInt size_bytes,
c10::DataPtr data_ptr,
c10::Allocator *allocator,
bool resizable)
{
if (data_ptr == nullptr)
{
data_ptr = allocator->allocate(size_bytes.as_int_unchecked());
}
// Correctly create NPUStorageImpl object.
c10::intrusive_ptr<c10::StorageImpl> npu_storage_impl = c10::make_intrusive<NPUStorageImpl>(
c10::StorageImpl::use_byte_size_t(),
size_bytes.as_int_unchecked(),
std::move(data_ptr),
allocator,
resizable);
// There is no need to consider the NPUStorageDesc information, it will be carried out in the subsequent processing.
return npu_storage_impl;
}
}