blob: 03b76849e15879444bbc78c216d13e017bb98021 [file] [log] [blame]
//
// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "armnn/INetwork.hpp"
#include "armnnUtils/QuantizeHelper.hpp"
#include <CommonTestUtils.hpp>
#include <ResolveType.hpp>
#include <doctest/doctest.h>
namespace
{
using namespace armnn;
armnn::INetworkPtr CreateTileNetwork(TileDescriptor& descriptor,
const armnn::TensorInfo& inputInfo,
const armnn::TensorInfo& outputInfo)
{
INetworkPtr network(INetwork::Create());
IConnectableLayer* inputLayer = network->AddInputLayer(0, "input");
IConnectableLayer* tileLayer = network->AddTileLayer(descriptor, "tile");
IConnectableLayer* outputLayer = network->AddOutputLayer(0, "output");
Connect(inputLayer, tileLayer, inputInfo, 0, 0);
Connect(tileLayer, outputLayer, outputInfo, 0, 0);
return network;
}
template <armnn::DataType ArmnnType, typename T = armnn::ResolveType<ArmnnType>>
void TileEndToEnd(const std::vector<BackendId>& backends)
{
float qScale = 1.0f;
int32_t qOffset = 0;
bool qConst = true;
const TensorShape inputTensorShape = { 6 };
const TensorShape outputTensorShape = { 30 };
TensorInfo inputInfo (inputTensorShape, ArmnnType, qScale, qOffset, qConst);
TensorInfo outputInfo (outputTensorShape, ArmnnType,qScale, qOffset);
std::vector<T> inputData = armnnUtils::QuantizedVector<T>({
65, 144, 91, 161, 56, 73
}, qScale, qOffset);
std::vector<T> expectedOutputData = armnnUtils::QuantizedVector<T>({
65, 144, 91, 161, 56, 73,
65, 144, 91, 161, 56, 73,
65, 144, 91, 161, 56, 73,
65, 144, 91, 161, 56, 73,
65, 144, 91, 161, 56, 73
}, qScale, qOffset);
auto descriptor = armnn::TileDescriptor(std::vector<uint32_t>{ 5 });
INetworkPtr network = CreateTileNetwork(descriptor, inputInfo, outputInfo);
std::map<int, std::vector<T>> inputTensor = { { 0, inputData } };
std::map<int, std::vector<T>> expectedOutputTensor = { { 0, expectedOutputData } };
EndToEndLayerTestImpl<ArmnnType, ArmnnType>(std::move(network), inputTensor, expectedOutputTensor, backends);
}
} // anonymous namespace