blob: bf6b603cf91f92e2c6ede99737874a00f59026aa [file] [log] [blame]
Jim Flynn4b2f3472021-10-13 21:20:07 +01001//
2// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3// 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
18} // namespace armnnDelegate
19