ArmNN
 22.11
Graph::LayerInGraph< ConstantLayer > Class Template Referencefinal

#include <Graph.hpp>

Inherits Graph::LayerInGraphBase< LayerT >.

Public Member Functions

template<typename... Args>
 LayerInGraph (Graph &graph, Args &&... args)
 
template<typename... Args>
 LayerInGraph (Graph &graph, Iterator, Args &&... args)
 
 ~LayerInGraph () override
 

Detailed Description

template<>
class armnn::Graph::LayerInGraph< ConstantLayer >

Definition at line 371 of file Graph.hpp.

Constructor & Destructor Documentation

◆ LayerInGraph() [1/2]

LayerInGraph ( Graph graph,
Args &&...  args 
)
inline

Definition at line 375 of file Graph.hpp.

376  : LayerInGraphBase<ConstantLayer>(graph,
377  // Always add to the back of the inputs.
378  std::next(graph.begin(), IteratorDifference(graph.GetNumInputs())),
379  std::forward<Args>(args)...)
380  {}
Iterator::difference_type IteratorDifference
Definition: Graph.hpp:54

◆ LayerInGraph() [2/2]

LayerInGraph ( Graph graph,
Iterator  ,
Args &&...  args 
)
inline

Definition at line 382 of file Graph.hpp.

384  : LayerInGraph(graph, std::forward<Args>(args)...)
385  {}
LayerInGraph(Graph &graph, Args &&... args)
Definition: Graph.hpp:375

◆ ~LayerInGraph()

~LayerInGraph ( )
inlineoverride

Definition at line 386 of file Graph.hpp.

387  {}

The documentation for this class was generated from the following file: