blob: 16fa1f975eb0a84c1df2ff6c93681f5e23b765ef [file] [log] [blame]
Declan-ARM5e90b832024-02-07 13:07:31 +00001//
2// Copyright © 2024 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <armnn/Descriptors.hpp>
9#include <gpuFsa/GpuFsaBackend.hpp>
10
11namespace armnn
12{
13
14arm_compute::Status GpuFsaReshapeValidate(const TensorInfo& input, const ReshapeDescriptor& descriptor);
15
16void GpuFsaReshapeCreateOp(GpuFsaPreCompiledBlob* blob,
17 const TensorInfo& input,
18 const ReshapeDescriptor& descriptor);
19
20} // namespace armnn
21