blob: 8221f0e679ddda3b67c324a3061f386506f8ca0f [file] [log] [blame]
Tracy Narinee7d27852024-01-26 09:13:19 +00001//
2// Copyright © 2024 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#pragma once
6
7#include <armnn/Descriptors.hpp>
8#include <armnn/Tensor.hpp>
9
10#include <arm_compute/core/Error.h>
11#include <arm_compute/dynamic_fusion/sketch/gpu/GpuWorkloadSketch.h>
12#include <gpuFsa/GpuFsaBackend.hpp>
13
14namespace armnn
15{
16
17 using namespace arm_compute::experimental::dynamic_fusion;
18
19 arm_compute::Status GpuFsaElementwiseBinaryAddValidate(const TensorInfo& input0,
20 const TensorInfo& input1);
21
22 void GpuFsaElementwiseBinaryAddCreateOp(GpuFsaPreCompiledBlob* blob,
23 const TensorInfo& input0,
24 const TensorInfo& input1);
25
26} // namespace armnn