MCPcopy Create free account
hub / github.com/ARM-software/armnn / GetPoolingAlgorithmAsCString

Function GetPoolingAlgorithmAsCString

include/armnn/TypesUtils.hpp:129–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127}
128
129constexpr char const* GetPoolingAlgorithmAsCString(PoolingAlgorithm pooling)
130{
131 switch (pooling)
132 {
133 case PoolingAlgorithm::Average: return "Average";
134 case PoolingAlgorithm::Max: return "Max";
135 case PoolingAlgorithm::L2: return "L2";
136 default: return "Unknown";
137 }
138}
139
140constexpr char const* GetOutputShapeRoundingAsCString(OutputShapeRounding rounding)
141{

Callers 1

SerializeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected