23.11
|
#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/NEON/functions/NEElementwiseOperations.h"
#include "arm_compute/runtime/Tensor.h"
#include "arm_compute/runtime/TensorAllocator.h"
#include "tests/NEON/Accessor.h"
#include "tests/PaddingCalculator.h"
#include "tests/datasets/ShapeDatasets.h"
#include "tests/framework/Asserts.h"
#include "tests/framework/Macros.h"
#include "tests/framework/datasets/Datasets.h"
#include "tests/validation/Validation.h"
#include "tests/validation/fixtures/ElementwiseOperationsFixture.h"
Go to the source code of this file.
Namespaces | |
arm_compute | |
Copyright (c) 2017-2023 Arm Limited. | |
arm_compute::test | |
arm_compute::test::validation | |
Typedefs | |
template<typename T > | |
using | NEElementwisePowerFixture = ElementwisePowerValidationFixture< Tensor, Accessor, NEElementwisePower, T > |
template<typename T > | |
using | NEElementwisePowerBroadcastFixture = ElementwisePowerBroadcastValidationFixture< Tensor, Accessor, NEElementwisePower, T > |
Functions | |
DATA_TEST_CASE (Validate, framework::DatasetMode::ALL, zip(zip(zip(framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), }), framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32), })), framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32), })), framework::dataset::make("Expected", { true, true, true, false, false})), input1_info, input2_info, output_info, expected) | |
FIXTURE_DATA_TEST_CASE (RunSmall, NEElementwisePowerFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ElementwisePowerFP32Dataset), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunLarge, NEElementwisePowerFixture< float >, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(), ElementwisePowerFP32Dataset), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmallBroadcast, NEElementwisePowerBroadcastFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapesBroadcast(), ElementwisePowerFP32Dataset), OutOfPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunTinyBroadcastInPlace, NEElementwisePowerBroadcastFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::TinyShapesBroadcastInplace(), ElementwisePowerFP32Dataset), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunLargeBroadcast, NEElementwisePowerBroadcastFixture< float >, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapesBroadcast(), ElementwisePowerFP32Dataset), OutOfPlaceDataSet)) | |