Home
last modified time | relevance | path

Searched refs:DecodeTensor (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/armnn/src/backends/reference/workloads/
H A DBaseIterator.hpp49 DecodeTensor(const TensorShape &tensorShape,
128 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::QASymm8Decoder
165 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::QASymmS8Decoder
202 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::QSymmS8Decoder
239 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::QSymm16Decoder
278 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::Float16Decoder
314 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::Float32Decoder
341 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::ScaledInt32Decoder
377 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::Int32Decoder
409 std::vector<float> DecodeTensor (const TensorShape& tensorShape, in DecodeTensor() function in armnn::Int32ToInt32tDecoder
[all …]
H A DFullyConnected.cpp29 const std::vector<float> decodedInputs = rInputDecoder.DecodeTensor(rInputShape); in FullyConnected()
30 const std::vector<float> decodedWeights = rWeightDecoder.DecodeTensor(rWeightsShape); in FullyConnected()
35 …const std::vector<float> decodedBiases = biasEnabled ? pBiasDecoder->DecodeTensor(biasShape) : std… in FullyConnected()
H A DConv3dImpl.cpp57 const std::vector<float> inputVec = rInputDecoder.DecodeTensor(rInputShape); in Convolve3d()
58 const std::vector<float> filterVec = rFilterDecoder.DecodeTensor(rFilterShape); in Convolve3d()
61 …const std::vector<float> biasVec = biasEnabled ? pBiasDecoder->DecodeTensor(biasShape) : std::vect… in Convolve3d()
H A DConvImpl.cpp114 const std::vector<float> inputVec = rInputDecoder.DecodeTensor(rInputShape); in Convolve()
115 const std::vector<float> filterVec = rFilterDecoder.DecodeTensor(rFilterShape, depthwise); in Convolve()
118 …const std::vector<float> biasVec = biasEnabled ? pBiasDecoder->DecodeTensor(biasShape) : std::vect… in Convolve()
H A DTransposeConvolution2d.cpp55 const std::vector<float> inputVec = inputDecoder.DecodeTensor(inputShape); in TransposeConvolution2dImpl()
56 const std::vector<float> filterVec = weightsDecoder.DecodeTensor(weightsShape); in TransposeConvolution2dImpl()
H A DBatchMatMulImpl.cpp30 inputXData = this->inputXDecoder.DecodeTensor(inputXInfo.GetShape()); in BatchMatMul()
31 inputYData = this->inputYDecoder.DecodeTensor(inputYInfo.GetShape()); in BatchMatMul()
H A DPooling2d.cpp181 const std::vector<float> decodedInputVec = rInputDecoder.DecodeTensor(inputInfo.GetShape()); in Pooling2d()
H A DPooling3d.cpp224 const std::vector<float> decodedInputVec = rInputDecoder.DecodeTensor(inputInfo.GetShape()); in Pooling3d()
/aosp_15_r20/external/armnn/src/backends/reference/test/
H A DRefPerChannelDecoderTests.cpp57 std::vector<float> output = decoder->DecodeTensor(tensorInfo.GetShape());
83 std::vector<float> output = decoder->DecodeTensor(tensorInfo.GetShape(), true);
116 std::vector<float> output = decoder->DecodeTensor(tensorInfo.GetShape(), true);
149 std::vector<float> output = decoder->DecodeTensor(tensorInfo.GetShape(), true);
H A DRefPerAxisIteratorTests.cpp54 virtual std::vector<float> DecodeTensor(const TensorShape &tensorShape, in DecodeTensor() function in MockPerAxisIterator