ONE - On-device Neural Engine
Loading...
Searching...
No Matches
onert::exec::feature Namespace Reference

Namespaces

namespace  nchw
 
namespace  nhwc
 

Data Structures

class  IndexIterator
 Class to iterate Callable with Index of feature. More...
 
struct  Reader
 Class reads values of feature The interface class. More...
 

Functions

template<typename Callable >
IndexIteratoroperator<< (IndexIterator &&it, Callable cb)
 Call a function iterated using IndexIterator of feature Overloaded operator<<.
 

Function Documentation

◆ operator<<()

template<typename Callable >
IndexIterator & onert::exec::feature::operator<< ( IndexIterator &&  it,
Callable  cb 
)

Call a function iterated using IndexIterator of feature Overloaded operator<<.

Parameters
[in]itAn IndexIterator reference
[in]cbA callback function
Returns
created IndexIterator object

Definition at line 95 of file IndexIterator.h.

96{
97 return it.iter(cb);
98}
IndexIterator & iter(Callable cb)
Call a function iterated.

References onert::exec::feature::IndexIterator::iter().