* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#ifndef METADEF_CXX_INC_EXE_GRAPH_RUNTIME_CONTINUOUS_BUFFER_H_
#define METADEF_CXX_INC_EXE_GRAPH_RUNTIME_CONTINUOUS_BUFFER_H_
#include <type_traits>
#include <cstdint>
#include "graph/def_types.h"
namespace gert {
namespace bg {
class BufferPool;
}
class ContinuousBuffer {
public:
* 获取buffer的数量
* @return buffer的数量
*/
size_t GetNum() const {
return num_;
}
* 获取本实例的总长度
* @return 本实例的总长度,单位为字节
*/
size_t GetTotalLength() const {
return offsets_[num_];
}
* 获取一个buffer
* @tparam T buffer的类型
* @param index buffer的index
* @return 指向该buffer的指针,若index非法,则返回空指针
*/
template<typename T>
const T *Get(size_t index) const {
if (index >= num_) {
return nullptr;
}
return ge::PtrToPtr<uint8_t, T>(ge::PtrToPtr<ContinuousBuffer, uint8_t>(this) + offsets_[index]);
}
* 获取一个buffer,及其对应的长度
* @tparam T buffer的类型
* @param index buffer的index
* @param len buffer的长度
* @return 指向该buffer的指针,若index非法,则返回空指针
*/
template<typename T>
const T *Get(size_t index, size_t &len) const {
if (index >= num_) {
return nullptr;
}
len = offsets_[index + 1] - offsets_[index];
return ge::PtrToPtr<uint8_t, T>(ge::PtrToPtr<ContinuousBuffer, uint8_t>(this) + offsets_[index]);
}
* 获取一个buffer
* @tparam T buffer的类型
* @param index buffer的index
* @return 指向该buffer的指针,若index非法,则返回空指针
*/
template<typename T>
T *Get(size_t index) {
if (index >= num_) {
return nullptr;
}
return ge::PtrToPtr<uint8_t, T>(ge::PtrToPtr<ContinuousBuffer, uint8_t>(this) + offsets_[index]);
}
private:
friend ::gert::bg::BufferPool;
size_t num_;
int64_t reserved_;
size_t offsets_[1];
};
static_assert(std::is_standard_layout<ContinuousBuffer>::value, "The class ContinuousText must be POD");
}
#endif