23.08
|
#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/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 | NEElementwiseMinFixture = ElementwiseMinValidationFixture< Tensor, Accessor, NEElementwiseMin, T > |
template<typename T > | |
using | NEElementwiseMinQuantizedBroadcastFixture = ElementwiseMinQuantizedBroadcastValidationFixture< Tensor, Accessor, NEElementwiseMin, T > |
template<typename T > | |
using | NEElementwiseMinBroadcastFixture = ElementwiseMinBroadcastValidationFixture< Tensor, Accessor, NEElementwiseMin, 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::S32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8_SIGNED), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8_SIGNED), }), framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16), TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8_SIGNED), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8), })), framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32), TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8_SIGNED), TensorInfo(TensorShape(4U, 4U, 2U), 1, DataType::QASYMM8_SIGNED), })), framework::dataset::make("Expected", { true, true, true, false, false, true, false})), input1_info, input2_info, output_info, expected) | |
FIXTURE_DATA_TEST_CASE (RunSmall, NEElementwiseMinFixture< int32_t >, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(), ElementwiseMinS32Dataset), InPlaceDataSet)) | |
TEST_SUITE_END () FIXTURE_DATA_TEST_CASE(RunSmall = ActivationValidationQuantizedFixture<CLTensor, CLAccessor, CLActivationLayer, T> | |
[CLActivationLayer Test snippet] More... | |
combine (combine(datasets::SmallShapes(), ElementwiseMinS16Dataset), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmallBroadcast, NEElementwiseMinQuantizedBroadcastFixture< uint8_t >, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(datasets::SmallShapesBroadcast(), ElementwiseMinQASYMM8Dataset), framework::dataset::make("QuantizationInfo", { QuantizationInfo(5.f/255.f, 20) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f/255.f, 10) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f/255.f, 5) })), OutOfPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunTinyBroadcastInPlace, NEElementwiseMinQuantizedBroadcastFixture< uint8_t >, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(datasets::TinyShapesBroadcastInplace(), ElementwiseMinQASYMM8Dataset), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f/255.f, 20) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f/255.f, 20) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f/255.f, 20) })), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmall, NEElementwiseMinQuantizedFixture< uint8_t >, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(datasets::SmallShapes(), ElementwiseMinQASYMM8Dataset), framework::dataset::make("QuantizationInfo", { QuantizationInfo(5.f/255.f, 20) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f/255.f, 10) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f/255.f, 5) })), OutOfPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmall, NEElementwiseMinQuantizedFixture< int8_t >, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(datasets::SmallShapes(), ElementwiseMaxQASYMM8SignedDataset), framework::dataset::make("QuantizationInfo", { QuantizationInfo(10.f, 20) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f, 0) })), framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f, -27) })), OutOfPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmall, NEElementwiseMinFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapes(), ElementwiseMinFP32Dataset), InPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunSmallBroadcast, NEElementwiseMinBroadcastFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::SmallShapesBroadcast(), ElementwiseMinFP32Dataset), OutOfPlaceDataSet)) | |
FIXTURE_DATA_TEST_CASE (RunTinyBroadcastInPlace, NEElementwiseMinBroadcastFixture< float >, framework::DatasetMode::ALL, combine(combine(datasets::TinyShapesBroadcastInplace(), ElementwiseMinFP32Dataset), InPlaceDataSet)) | |
Variables | |
NEElementwiseMinFixture< int16_t > | |