// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "MaximumTestImpl.hpp" #include "ElementwiseTestImpl.hpp" template<> std::unique_ptr CreateWorkload( const armnn::IWorkloadFactory& workloadFactory, const armnn::WorkloadInfo& info, const armnn::MaximumQueueDescriptor& descriptor) { return workloadFactory.CreateMaximum(descriptor, info); } LayerTestResult MaximumSimpleTest(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { IgnoreUnused(memoryManager); const unsigned int width = 2u; const unsigned int height = 2u; const unsigned int channelCount = 2u; const unsigned int batchSize = 2u; unsigned int shape[] = { batchSize, channelCount, height, width }; std::vector input0 = { 1.f, 1.f, 1.f, 1.f, 5.f, 5.f, 5.f, 5.f, 3.f, 3.f, 3.f, 3.f, 4.f, 4.f, 4.f, 4.f }; std::vector input1 = { 2.f, 2.f, 2.f, 2.f, 3.f, 3.f, 3.f, 3.f, 4.f, 4.f, 4.f, 4.f, 5.f, 5.f, 5.f, 5.f }; std::vector output = { 2.f, 2.f, 2.f, 2.f, 5.f, 5.f, 5.f, 5.f, 4.f, 4.f, 4.f, 4.f, 5.f, 5.f, 5.f, 5.f }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float32>( workloadFactory, memoryManager, shape, input0, shape, input1, shape, output); } LayerTestResult MaximumBroadcast1ElementTest( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { unsigned int shape0[] = { 1, 2, 2, 2 }; unsigned int shape1[] = { 1, 1, 1, 1 }; std::vector input0 = { 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f, 8.f }; std::vector input1 = { 2.f }; std::vector output = { 2.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f, 8.f }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float32>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumBroadcast1DVectorTest( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 3 }; std::vector input0 = { 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f, 8.f, 9.f, 10.f, 11.f, 12.f }; std::vector input1 = { 1.f, 2.f, 3.f }; std::vector output = { 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 7.f, 8.f, 9.f, 10.f, 11.f, 12.f }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float32>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumFloat16Test(armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { using namespace half_float::literal; const unsigned int width = 2u; const unsigned int height = 2u; const unsigned int channelCount = 2u; const unsigned int batchSize = 2u; unsigned int shape[] = { batchSize, channelCount, height, width }; std::vector input0 = { 1._h, 1._h, 1._h, 1._h, 5._h, 5._h, 5._h, 5._h, 3._h, 3._h, 3._h, 3._h, 4._h, 4._h, 4._h, 4._h }; std::vector input1 = { 2._h, 2._h, 2._h, 2._h, 3._h, 3._h, 3._h, 3._h, 4._h, 4._h, 4._h, 4._h, 5._h, 5._h, 5._h, 5._h }; std::vector output = { 2._h, 2._h, 2._h, 2._h, 5._h, 5._h, 5._h, 5._h, 4._h, 4._h, 4._h, 4._h, 5._h, 5._h, 5._h, 5._h }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float16>( workloadFactory, memoryManager, shape, input0, shape, input1, shape, output); } LayerTestResult MaximumBroadcast1ElementFloat16Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { using namespace half_float::literal; unsigned int shape0[] = { 1, 2, 2, 2 }; unsigned int shape1[] = { 1, 1, 1, 1 }; std::vector input0 = { 1._h, 2._h, 3._h, 4._h, 5._h, 6._h, 7._h, 8._h }; std::vector input1 = { 2._h }; std::vector output = { 2._h, 2._h, 3._h, 4._h, 5._h, 6._h, 7._h, 8._h }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float16>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumBroadcast1DVectorFloat16Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { using namespace half_float::literal; const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 3 }; std::vector input0 = { 1._h, 2._h, 3._h, 4._h, 5._h, 6._h, 7._h, 8._h, 9._h, 10._h, 11._h, 12._h }; std::vector input1 = { 1._h, 2._h, 3._h }; std::vector output = { 1._h, 2._h, 3._h, 4._h, 5._h, 6._h, 7._h, 8._h, 9._h, 10._h, 11._h, 12._h }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Float16>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumUint8Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { unsigned int shape[] = { 2, 2, 2, 2 }; // See dequantized values to the right. std::vector input0 = { 1, 1, 1, 1, 6, 6, 6, 6, 3, 3, 3, 3, 4, 4, 4, 4 }; std::vector input1 = { 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5 }; std::vector output = { 2, 2, 2, 2, 6, 6, 6, 6, 4, 4, 4, 4, 5, 5, 5, 5 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QAsymmU8>( workloadFactory, memoryManager, shape, input0, shape, input1, shape, output); } LayerTestResult MaximumBroadcast1ElementUint8Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 1 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 2 }; std::vector output = { 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QAsymmU8>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumBroadcast1DVectorUint8Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 3 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 1, 10, 3 }; std::vector output = { 1, 10, 3, 4, 10, 6, 7, 10, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QAsymmU8>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumInt16Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { unsigned int shape[] = { 2, 2, 2, 2 }; std::vector input0({ 1, 1, 1, 1, 6, 6, 6, 6, 3, 3, 3, 3, 4, 4, 4, 4 }); std::vector input1({ 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5 }); std::vector output({ 2, 2, 2, 2, 6, 6, 6, 6, 4, 4, 4, 4, 5, 5, 5, 5 }); return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QSymmS16>( workloadFactory, memoryManager, shape, input0, shape, input1, shape, output); } LayerTestResult MaximumBroadcast1ElementInt16Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 1 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 2 }; std::vector output = { 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QSymmS16>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumBroadcast1DVectorInt16Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 3 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 1, 10, 3 }; std::vector output = { 1, 10, 3, 4, 10, 6, 7, 10, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::QSymmS16>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumInt32Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { unsigned int shape[] = { 2, 2, 2, 2 }; std::vector input0({ 1, 1, 1, 1, 6, 6, 6, 6, 3, 3, 3, 3, 4, 4, 4, 4 }); std::vector input1({ 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5 }); std::vector output({ 2, 2, 2, 2, 6, 6, 6, 6, 4, 4, 4, 4, 5, 5, 5, 5 }); return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Signed32>( workloadFactory, memoryManager, shape, input0, shape, input1, shape, output); } LayerTestResult MaximumBroadcast1ElementInt32Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 1 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 2 }; std::vector output = { 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Signed32>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); } LayerTestResult MaximumBroadcast1DVectorInt32Test( armnn::IWorkloadFactory& workloadFactory, const armnn::IBackendInternal::IMemoryManagerSharedPtr& memoryManager) { const unsigned int shape0[] = { 1, 2, 2, 3 }; const unsigned int shape1[] = { 1, 1, 1, 3 }; std::vector input0 = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; std::vector input1 = { 1, 10, 3 }; std::vector output = { 1, 10, 3, 4, 10, 6, 7, 10, 9, 10, 11, 12 }; return ElementwiseTestHelper<4, armnn::MaximumQueueDescriptor, armnn::DataType::Signed32>( workloadFactory, memoryManager, shape0, input0, shape1, input1, shape0, output); }