blob: f467bb6d10a271b38fc6fa107e6595cdf20f0560 [file] [log] [blame]
Cathal Corbett9c9d5b92022-08-17 17:30:16 +01001//
2// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <Layer.hpp>
9
10#include <tosa_serialization_handler.h>
11#include "TosaOperatorUtils.hpp"
12
13using namespace armnn;
14using namespace tosa;
15
16TosaSerializationBasicBlock* ConvertAdditionToTosaOperator(const std::vector<const TensorInfo*>& inputs,
Matthew Sloyan5c54c382022-11-09 16:28:51 +000017 const std::vector<const TensorInfo*>& outputs,
18 bool isMain);
Cathal Corbett9c9d5b92022-08-17 17:30:16 +010019