// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "CastTestImpl.hpp" #include "ElementwiseUnaryTestImpl.hpp" template LayerTestResult CastTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory, const std::vector& inputValues, const std::vector& outputValues) { IgnoreUnused(memoryManager); armnn::TensorInfo inputTensorInfo({1, 3, 2, 3}, inputDataType); armnn::TensorInfo outputTensorInfo({1, 3, 2, 3}, outputDataType); float quantizationScale = 1.0f; int32_t quantizationOffset = 0; if(armnn::IsQuantizedType()) { inputTensorInfo.SetQuantizationScale(quantizationScale); inputTensorInfo.SetQuantizationOffset(quantizationOffset); } if(armnn::IsQuantizedType()) { outputTensorInfo.SetQuantizationScale(quantizationScale); outputTensorInfo.SetQuantizationOffset(quantizationOffset); } std::vector actualOutput(outputTensorInfo.GetNumElements()); std::unique_ptr inputHandle = tensorHandleFactory.CreateTensorHandle(inputTensorInfo); std::unique_ptr outputHandle = tensorHandleFactory.CreateTensorHandle(outputTensorInfo); armnn::CastQueueDescriptor data; armnn::WorkloadInfo info; AddInputToWorkload(data, info, inputTensorInfo, inputHandle.get()); AddOutputToWorkload(data, info, outputTensorInfo, outputHandle.get()); std::unique_ptr workload = workloadFactory.CreateCast(data, info); inputHandle->Allocate(); outputHandle->Allocate(); CopyDataToITensorHandle(inputHandle.get(), inputValues.data()); workload->Execute(); CopyDataFromITensorHandle(actualOutput.data(), outputHandle.get()); return LayerTestResult(actualOutput, outputValues, outputHandle->GetShape(), outputTensorInfo.GetShape()); } LayerTestResult CastInt32ToFloat2dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastInt16ToFloat2dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastInt8ToFloat2dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastInt8AsymmToFloat2dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastUInt8ToFloat2dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 3.0f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastInt8ToUInt82dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, -1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastInt8AsymmToUInt82dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1, -3, -1, -3, -1, -3, -1, -3, -1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; std::vector outputValues = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastFloat16ToFloat322dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { using namespace half_float::literal; std::vector inputValues = { -1.10_h, -3._h, -1.30_h, -3._h, -1._h, -3._h, -1._h, -3._h, 1._h, 3.10_h, 1._h, 3.30_h, 1._h, 2._h, 1._h, 3._h, 1._h, 3._h }; std::vector outputValues = { -1.1f, -3.0f, -1.3f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.1f, 1.0f, 3.3f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastBFloat16ToFloat322dTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = armnnUtils::QuantizedVector( { -37.5f, -15.2f, -8.76f, -2.0f, -1.5f, -1.3f, -0.5f, -0.4f, 0.0f, 1.0f, 0.4f, 0.5f, 1.3f, 1.5f, 2.0f, 8.76f, 15.2f, 37.5f }, 1.0f, 0); std::vector outputValues = { -37.5f, -15.2f, -8.76f, -2.0f, -1.5f, -1.3f, -0.5f, -0.4f, 0.0f, 1.0f, 0.4f, 0.5f, 1.3f, 1.5f, 2.0f, 8.76f, 15.2f, 37.5f }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastFloat32ToFloat162dTest( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { using namespace half_float::literal; std::vector inputValues = { -37.5f, -15.2f, -8.76f, -2.0f, -1.5f, -1.3f, -0.5f, -0.4f, 0.00000004f, 3.4E38f, 300.0f, 0.5f, 1.3f, 1.5f, 2.1E4f, 8.76f, 15.2f, 37.5f }; std::vector outputValues = {-37.50_h, -15.20_h, -8.76_h, -2._h, -1.50_h, -1.30_h, -0.50_h, -0.40_h, 0._h, 6.55E4_h, 300._h, 0.50_h, 1.30_h, 1.50_h, 2.1E4_h, 8.76_h, 15.20_h, 37.50_h}; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastFloat32ToInt82dTest( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1.0f, -3.5f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.1f, 1.5f, 3.9f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; std::vector outputValues = { -1, -3, -1, -3, -1, -3, -1, -3, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); } LayerTestResult CastFloat32ToUInt82dTest( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager, const armnn::ITensorHandleFactory& tensorHandleFactory) { std::vector inputValues = { -1.0f, -3.5f, -1.0f, -3.0f, -1.0f, -3.0f, -1.0f, -3.0f, 1.0f, 3.1f, 1.5f, 3.9f, 1.0f, 2.0f, 1.0f, 3.0f, 1.0f, 3.0f }; std::vector outputValues = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 3, 1, 2, 1, 3, 1, 3 }; return CastTest(workloadFactory, memoryManager, tensorHandleFactory, inputValues, outputValues); }