blob: 120060e8adb657c3dbc1b6874f11537d89ec3062 [file] [log] [blame]
David Monahan8a570462023-11-22 13:24:25 +00001//
2// Copyright © 2023 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
13namespace armnn
14{
15
16using namespace arm_compute::experimental::dynamic_fusion;
17
18arm_compute::Status GpuFsaConvolution2dValidate(const TensorInfo& input,
19 const Convolution2dDescriptor& descriptor,
20 const TensorInfo& weights,
21 const Optional<TensorInfo>& biases);
22
23void GpuFsaConvolution2dCreateOp(const TensorInfo& input,
24 const Convolution2dDescriptor& descriptor,
25 const TensorInfo& weights,
26 const Optional<TensorInfo>& biases);
27
28} // namespace armnn