Searched refs:offset_element_in_bytes (Results 1 – 13 of 13) sorted by relevance
/aosp_15_r20/external/ComputeLibrary/utils/ |
H A D | Utils.cpp | 134 …uint8_t *top = tensor->info()->offset_element_in_bytes(Coordinates(rect.x, rect.y)) + tensor->b… in draw_detection_rectangle() 135 …uint8_t *bottom = tensor->info()->offset_element_in_bytes(Coordinates(rect.x, rect.y + rect.height… in draw_detection_rectangle() 137 …uint8_t *right = tensor->info()->offset_element_in_bytes(Coordinates(rect.x + rect.width, rect.y)… in draw_detection_rectangle()
|
/aosp_15_r20/external/ComputeLibrary/src/runtime/ |
H A D | TensorAllocator.cpp | 120 …size_t total_size = parent_info.offset_element_in_bytes(coords) + sub_info.total_size() - sub_info… in init() 121 …, sub_info.format(), parent_info.strides_in_bytes(), parent_info.offset_element_in_bytes(coords), … in init()
|
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/ |
H A D | SubTensorInfo.h | 143 return _parent->offset_element_in_bytes(_coords); in offset_first_element_in_bytes() 145 int32_t offset_element_in_bytes(const Coordinates &pos) const override;
|
H A D | ITensor.h | 65 return buffer() + info()->offset_element_in_bytes(id); in ptr_to_element()
|
H A D | ITensorInfo.h | 197 virtual int32_t offset_element_in_bytes(const Coordinates &pos) const = 0;
|
H A D | TensorInfo.h | 223 int32_t offset_element_in_bytes(const Coordinates &pos) const override;
|
/aosp_15_r20/external/ComputeLibrary/src/core/ |
H A D | SubTensorInfo.cpp | 149 int32_t SubTensorInfo::offset_element_in_bytes(const Coordinates &pos) const in offset_element_in_bytes() function in arm_compute::SubTensorInfo
|
H A D | ITensor.cpp | 113 …start_offset = this->info()->offset_element_in_bytes(Coordinates(this->info()->valid_region().anch… in print()
|
H A D | TensorInfo.cpp | 402 int32_t TensorInfo::offset_element_in_bytes(const Coordinates &pos) const in offset_element_in_bytes() function in arm_compute::TensorInfo
|
/aosp_15_r20/external/ComputeLibrary/src/core/NEON/kernels/ |
H A D | NEReorgLayerKernel.cpp | 139 …std::memcpy(out.ptr(), in_ptr + _input->info()->offset_element_in_bytes(map_coords), _input->info(… in run()
|
/aosp_15_r20/external/ComputeLibrary/tests/ |
H A D | SimpleTensorPrinter.h | 82 start_offset = info.offset_element_in_bytes(Coordinates(info.valid_region().anchor.x(),
|
/aosp_15_r20/external/armnn/src/backends/aclCommon/ |
H A D | ArmComputeTensorUtils.hpp | 168 return armnn::numeric_cast<size_t>(info.offset_element_in_bytes(coords)); in GetTensorOffset()
|
/aosp_15_r20/external/ComputeLibrary/docs/user_guide/ |
H A D | library.dox | 179 float value = *reinterpret_cast<float*>(input.buffer() + input.info()->offset_element_in_bytes(Coor…
|