blob: bbfd1ee694a6bc61ce64ad27310c8ff157a79103 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once
#include <Layer.hpp>
namespace armnn
{
class MultiplicationLayer : public Layer
{
public:
virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph& graph,
const IWorkloadFactory& factory) const override;
MultiplicationLayer* Clone(Graph& graph) const override;
void ValidateTensorShapesFromInputs() override;
std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;
protected:
MultiplicationLayer(const char* name);
~MultiplicationLayer() = default;
};
} // namespace