Skip to content
Snippets Groups Projects
Commit d0662bae authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Doc improvement

parent 568512e6
No related branches found
No related tags found
2 merge requests!152Update Aidge export to take a graph view has an argument instead of a...,!138Alternative graph matching
Pipeline #46099 passed
......@@ -78,18 +78,26 @@ public:
*
* Some rules:
* - The first node of the first sequence is the root node and cannot be optional
* WRONG: Conv?->ReLU (will throws an error)
* WRONG: Conv?->ReLU (will throw an error)
* GOOD: ReLU<-Conv?
*
* - The first node of any further sequence must be an existing anchor
* (the anchor cannot be in the middle of the sequence)
* WRONG: Conv->ReLU;Pad->Conv (will throws an error)
* Pad->Conv;Conv->ReLU (will throws an error)
* WRONG: Conv->ReLU;Pad->Conv (will throw an error)
* Pad->Conv;Conv->ReLU (will throw an error)
* GOOD: Conv#->ReLU;Conv#<-Pad
* Pad->Conv#;Conv#->ReLU
*
* - Any node already matched cannot be matched again (except for anchors)
*
* - By default, an edge matches the first output to the first input.
* EXAMPLE: ReLU->Conv is equivalent to ReLU-0-0>Conv
* To match the second input, use ReLU-0-1>Conv (or ReLU-1>Conv)
* To match the second output, use ReLU-1-0>Conv
* To match any input and/or any output, use *, like ReLU-1-*>Conv
* or ReLU-*-0>Conv or ReLU-*-*>Conv
* The same is true for the "<-" edge syntax.
*
* - When several nodes could match for a given node query, the first one
* not already in the matching result is matched, following the
* childs/parents ordered node list
......
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