1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
//
// Copyright © 2021, 2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "ShapeTestHelper.hpp"
#include <doctest/doctest.h>
namespace armnnDelegate
{
void ShapeSimpleTest(std::vector<armnn::BackendId>& backends)
{
std::vector<int32_t> inputShape{ 1, 3, 2, 3 };
std::vector<int32_t> inputValues{ 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, };
std::vector<int32_t> expectedOutputShape{ 4 };
std::vector<int32_t> expectedOutputValues{ 1, 3, 2, 3 };
ShapeTest<int32_t, int32_t>(::tflite::TensorType_INT32,
::tflite::TensorType_INT32,
backends,
inputShape,
inputValues,
expectedOutputValues,
expectedOutputShape);
}
// SHAPE Test Suite
TEST_SUITE("SHAPE_CpuRefTests")
{
TEST_CASE("SHAPE_Simple_CpuRef_Test")
{
std::vector<armnn::BackendId> backends = { armnn::Compute::CpuRef };
ShapeSimpleTest(backends);
}
}
// End of SHAPE Test Suite
} // namespace armnnDelegate
|