Skip to content
Snippets Groups Projects
Commit b3e077db authored by Benjamin Halimi's avatar Benjamin Halimi
Browse files

operator renaming (2D suffix)

parent 3c5ca20d
No related branches found
No related tags found
No related merge requests found
...@@ -26,12 +26,12 @@ namespace Aidge { ...@@ -26,12 +26,12 @@ namespace Aidge {
/** /**
* @brief Set of the types of the nodes which contain affine transforms (that is Y = A.X + B) * @brief Set of the types of the nodes which contain affine transforms (that is Y = A.X + B)
*/ */
static const std::set<std::string> affineNodeTypes({"FC", "Conv", "ConvDepthWise", "PaddedConv", "PaddedConvDepthWise"}); static const std::set<std::string> affineNodeTypes({"FC", "Conv2D", "ConvDepthWise2D", "PaddedConv2D", "PaddedConvDepthWise2D"});
/** /**
* @brief Set of the types of the nodes which does not affect the PTQ process * @brief Set of the types of the nodes which does not affect the PTQ process
*/ */
static const std::set<std::string> seamlessNodeTypes({"Pad", "MaxPooling", "AvgPooling", "PaddedMaxPooling", "PaddedAvgPooling", "GlobalAveragePooling", "Reshape", "Transpose", "Gather"}); static const std::set<std::string> seamlessNodeTypes({"Pad2D", "MaxPooling2D", "AvgPooling2D", "PaddedMaxPooling2D", "PaddedAvgPooling2D", "GlobalAveragePooling", "Reshape", "Transpose", "Gather"});
/** /**
* @brief Set of the types of the nodes that merge multiple branches into one * @brief Set of the types of the nodes that merge multiple branches into one
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment