blob: ad0ac1c74eefb029c3ac74bcb52a0b26c9ddf7d1 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "LayerWithParameters.hpp"
namespace armnn
{
class ScopedCpuTensorHandle;
class FullyConnectedLayer : public LayerWithParameters<FullyConnectedDescriptor>
{
public:
std::unique_ptr<ScopedCpuTensorHandle> m_Weight;
std::unique_ptr<ScopedCpuTensorHandle> m_Bias;
virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph& graph,
const IWorkloadFactory& factory) const override;
FullyConnectedLayer* Clone(Graph& graph) const override;
void ValidateTensorShapesFromInputs() override;
std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;
protected:
FullyConnectedLayer(const FullyConnectedDescriptor& param, const char* name);
~FullyConnectedLayer() = default;
ConstantTensors GetConstantTensorsByRef() override;
};
} // namespace