ArmNN
 26.01
Loading...
Searching...
No Matches
Graph::LayerInGraph< ConstantLayer > Class Referencefinal

#include <Graph.hpp>

Inheritance diagram for Graph::LayerInGraph< ConstantLayer >:
[legend]
Collaboration diagram for Graph::LayerInGraph< ConstantLayer >:
[legend]

Public Member Functions

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

Detailed Description

Definition at line 380 of file Graph.hpp.

Constructor & Destructor Documentation

◆ LayerInGraph() [1/2]

template<typename... Args>
LayerInGraph ( Graph & graph,
Args &&... args )
inline

Definition at line 384 of file Graph.hpp.

385 : LayerInGraphBase<ConstantLayer>(graph,
386 // Always add to the back of the inputs.
387 std::next(graph.begin(), IteratorDifference(graph.GetNumInputs())),
388 std::forward<Args>(args)...)
389 {}
Iterator::difference_type IteratorDifference
Definition Graph.hpp:54

◆ LayerInGraph() [2/2]

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

Definition at line 391 of file Graph.hpp.

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

◆ ~LayerInGraph()

~LayerInGraph ( )
inlineoverride

Definition at line 395 of file Graph.hpp.

396 {}

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