aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/DivisionLayer.hpp
blob: c6a642e3182a583424ff5dd6365cbf29853aa897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once

#include "ArithmeticBaseLayer.hpp"

namespace armnn
{

class DivisionLayer : public ArithmeticBaseLayer
{
public:
    virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph& graph,
                                                      const IWorkloadFactory& factory) const override;

    DivisionLayer* Clone(Graph& graph) const override;

protected:
    DivisionLayer(const char* name);
    ~DivisionLayer() = default;
};

} // namespace