Skip to content
Snippets Groups Projects

Removed padding from conv and pool and added Pad operator

Merged Olivier BICHLER requested to merge padding into main
All threads resolved!
Files
23
@@ -124,7 +124,7 @@ public:
}
/**
* @brief List dataInput connections of the GraphView object's inputNodes.
* @brief List outside dataInput connections of the GraphView object's inputNodes.
* @return std::vector<std::pair<NodePtr, IOIndex_t>>
*/
std::vector<std::pair<NodePtr, IOIndex_t>> dataInputs() const;
@@ -137,7 +137,7 @@ public:
inline auto dataInputs(const std::string name) const { return mNodeRegistry.at(name)->dataInputs(); }
/**
* @brief List input connections of the GraphView object's inputNodes.
* @brief List outside input connections of the GraphView object's inputNodes.
* @return std::vector<std::pair<NodePtr, IOIndex_t>>
*/
std::vector<std::pair<NodePtr, IOIndex_t>> inputs() const;
Loading