ONE - On-device Neural Engine
|
Data Structures | |
class | Index |
Class to have the index information for calculating the offset. More... | |
class | IndexIterator |
Class to iterate Callable with Index of feature. More... | |
class | Object |
Class to have information of the operand for feature. More... | |
struct | Reader |
Class reads values of feature The interface class. More... | |
struct | Shape |
Structure to have values of dimensions for feature. More... | |
class | TextFormatter |
Class to print operand of feature to ostream in the given string format. More... | |
Functions | |
template<typename Callable > | |
IndexIterator & | operator<< (IndexIterator &&it, Callable cb) |
Call a function iterated using IndexIterator of feature Overloaded operator<<. | |
template<typename T > | |
std::ostream & | operator<< (std::ostream &os, const TextFormatter< T > &fmt) |
Print operand of feature. | |
IndexIterator & nnfw::misc::feature::operator<< | ( | IndexIterator && | it, |
Callable | cb | ||
) |
Call a function iterated using IndexIterator of feature Overloaded operator<<.
[in] | it | An IndexIterator reference |
[in] | cb | A callback function |
Definition at line 96 of file IndexIterator.h.
References nnfw::misc::feature::IndexIterator::iter().
std::ostream & nnfw::misc::feature::operator<< | ( | std::ostream & | os, |
const TextFormatter< T > & | fmt | ||
) |
Print operand of feature.
[in] | os | Standard output stream |
[in] | fmt | TextFormatter to print information of an operand |
Definition at line 85 of file TextFormatter.h.