blob: 623259f8f8c6c2bc50dd6c4a99b5a89a960a4eb9 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
8#include <armnn/Tensor.hpp>
9
10namespace armnn
11{
12
telsoa01c577f2c2018-08-31 09:22:23 +010013/// Performs a matrix multiplication and optionally adds a bias.
telsoa014fcda012018-03-09 14:13:49 +000014void FullyConnected(const float* inputData,
15 float* outputData,
16 const TensorInfo& inputTensorInfo,
17 const TensorInfo& outputTensorInfo,
18 const float* weightData,
19 const float* biasData,
20 bool transposeWeights);
21
22} //namespace armnn