blob: b03a63ded93b7d7d4a4b67afec2307fe256eca27 [file] [log] [blame]
Jim Flynn4b2f3472021-10-13 21:20:07 +01001//
Ryan OShea3ad2e142023-01-13 10:19:20 +00002// Copyright © 2021, 2023 Arm Ltd and Contributors. All rights reserved.
Jim Flynn4b2f3472021-10-13 21:20:07 +01003// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <armnn_delegate.hpp>
9
10namespace armnnDelegate
11{
12
13TfLiteStatus ValidateFloorOperator(DelegateData& delegateData,
14 TfLiteContext* tfLiteContext,
15 const armnn::TensorInfo& inputTensorInfo,
16 const armnn::TensorInfo& outputTensorInfo);
17
Ryan OShea3ad2e142023-01-13 10:19:20 +000018TfLiteStatus ValidateFusedActivationOperator(DelegateData& delegateData,
19 TfLiteContext* tfLiteContext,
20 const armnn::TensorInfo& inputInfo,
21 const armnn::TensorInfo& outputInfo,
22 TfLiteFusedActivation activationType);
23
Jim Flynn4b2f3472021-10-13 21:20:07 +010024} // namespace armnnDelegate
25