Runtime information

Overview

A mechanism of runtime information extension. More…

// classes

class ngraph::DequantizationAttr;
class ngraph::FusedNames;
class ngraph::PrimitivesPriority;

// global functions

std::string ngraph::getDequantization(const std::shared_ptr<ngraph::Node>& node);
std::string ngraph::getFusedNames(const std::shared_ptr<ngraph::Node>& node);
std::vector<std::string> ngraph::getFusedNamesVector(const std::shared_ptr<ngraph::Node>& node);
std::string ngraph::getPrimitivesPriority(const std::shared_ptr<ngraph::Node>& node);

Detailed Documentation

A mechanism of runtime information extension.

Global Functions

std::string ngraph::getDequantization(const std::shared_ptr<ngraph::Node>& node)

getDequantization return string with dequantization value

Parameters:

node

The node will be used to get Dequantization attribute

std::string ngraph::getFusedNames(const std::shared_ptr<ngraph::Node>& node)

getFusedNames return string with operation names separated by coma in alphabetical order

Parameters:

node

The node will be used to get FusedNames attribute

std::vector<std::string> ngraph::getFusedNamesVector(const std::shared_ptr<ngraph::Node>& node)

getFusedNamesVector return vector of fused names sorted in alphabetical order

Parameters:

node

The node will be used to get FusedNames attribute

Returns:

vector of strings

std::string ngraph::getPrimitivesPriority(const std::shared_ptr<ngraph::Node>& node)

getPrimitivesPriority return string with primitive priorities value

Parameters:

node

The node will be used to get PrimitivesPriority attribute