// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "TensorCopyUtils.hpp" #include "WorkloadTestUtils.hpp" #include #include #include struct ActivationFixture { ActivationFixture() { auto boostArrayExtents = boost::extents [boost::numeric_cast(batchSize)] [boost::numeric_cast(channels)] [boost::numeric_cast(height)] [boost::numeric_cast(width)]; output.resize(boostArrayExtents); outputExpected.resize(boostArrayExtents); input.resize(boostArrayExtents); unsigned int inputShape[] = { batchSize, channels, height, width }; unsigned int outputShape[] = { batchSize, channels, height, width }; inputTensorInfo = armnn::TensorInfo(4, inputShape, armnn::DataType::Float32); outputTensorInfo = armnn::TensorInfo(4, outputShape, armnn::DataType::Float32); input = MakeRandomTensor(inputTensorInfo, 21453); } unsigned int width = 17; unsigned int height = 29; unsigned int channels = 2; unsigned int batchSize = 5; boost::multi_array output; boost::multi_array outputExpected; boost::multi_array input; armnn::TensorInfo inputTensorInfo; armnn::TensorInfo outputTensorInfo; // Parameters used by some of the activation functions. float a = 0.234f; float b = -12.345f; }; struct PositiveActivationFixture : public ActivationFixture { PositiveActivationFixture() { input = MakeRandomTensor(inputTensorInfo, 2342423, 0.0f, 1.0f); } };