#include <ICLTensorProxy.hpp>
|
uint8_t * | do_map (cl::CommandQueue &q, bool blocking) |
|
void | do_unmap (cl::CommandQueue &q) |
|
Definition at line 13 of file ICLTensorProxy.hpp.
◆ ICLTensorProxy() [1/3]
◆ ICLTensorProxy() [2/3]
◆ ICLTensorProxy() [3/3]
◆ buffer()
uint8_t* buffer |
( |
| ) |
const |
|
inline |
Definition at line 43 of file ICLTensorProxy.hpp.
45 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
46 return m_DelegateTensor->buffer();
◆ cl_buffer()
const cl::Buffer& cl_buffer |
( |
| ) |
const |
|
inline |
Definition at line 55 of file ICLTensorProxy.hpp.
57 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
58 return m_DelegateTensor->cl_buffer();
◆ do_map()
uint8_t* do_map |
( |
cl::CommandQueue & |
q, |
|
|
bool |
blocking |
|
) |
| |
|
inlineprotected |
Definition at line 62 of file ICLTensorProxy.hpp.
64 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
65 m_DelegateTensor->map(q, blocking);
66 return m_DelegateTensor->buffer();
◆ do_unmap()
void do_unmap |
( |
cl::CommandQueue & |
q | ) |
|
|
inlineprotected |
Definition at line 68 of file ICLTensorProxy.hpp.
70 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
71 return m_DelegateTensor->unmap(q);
◆ info() [1/2]
arm_compute::ITensorInfo* info |
( |
| ) |
|
|
inline |
Definition at line 37 of file ICLTensorProxy.hpp.
39 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
40 return m_DelegateTensor->info();
◆ info() [2/2]
arm_compute::ITensorInfo* info |
( |
| ) |
const |
|
inline |
Definition at line 31 of file ICLTensorProxy.hpp.
33 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
34 return m_DelegateTensor->info();
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ quantization()
arm_compute::CLQuantization quantization |
( |
| ) |
const |
|
inline |
Definition at line 49 of file ICLTensorProxy.hpp.
51 ARM_COMPUTE_ERROR_ON(m_DelegateTensor ==
nullptr);
52 return m_DelegateTensor->quantization();
◆ set()
void set |
( |
arm_compute::ICLTensor * |
iclTensor | ) |
|
|
inline |
Definition at line 22 of file ICLTensorProxy.hpp.
24 if(iclTensor !=
nullptr)
26 m_DelegateTensor = iclTensor;
The documentation for this class was generated from the following file: