Add selection mechanism in graph
1 unresolved thread
1 unresolved thread
Compare changes
- Olivier BICHLER authored
+ 6
− 10
@@ -76,16 +76,12 @@ struct Registrar {
The main feature of this MR is to introduce the Select
operator, allowing conditionnal graph execution.
The condition can be data dependent, yet the graph scheduling remains fully static!
As per Aidge's philosophy, sub-graph hierarchy is an optional feature, not a mandatory workaround, contrary to ONNX's If
operator or PyTorch torch.cond
method. The Select
operator has the following advantages over them:
Two scheduling behaviors are possible, depending on wether Scheduler::tagConditionalNodes()
was called or not:
This MR adds the following:
Mod
(modulus), conformant to ONNX;CryptoHash
, for computing SHA256 (using OpenSSL, now an optional dependency to aidge_backend_cpu
);Select
, which selects one of its inputs;Scheduler::tagConditionalNodes()
method that tags nodes with their conditions in the schedule.cond
attribute;schedule.cond
nodes tag;analysis/
sub-folder with the StaticAnalysis
and OperatorStats
now in separate source files;DynamicAnalysis
class that has the same functions as StaticAnalysis
but on the scheduled graph. The DynamicAnalysis
will therefore report stats for the actual graph execution, which may differ from the static graph if for example some nodes are run multiple time (in recurrent/cyclic graphs) or never run (conditional node);GraphView::replace()
from !281 (closed);Registrar
now also displays the list of available keys when a key is not found;In the following example, we implement a conditional graph where the condition depends on the input data.
%%{init: {'flowchart': { 'curve': 'monotoneY'}, 'fontFamily': 'Verdana' } }%%
flowchart TB
Producer_0("input<br/><sub><em>(Producer#0)</em></sub>"):::producerCls_rootCls
CryptoHash_0("hash<br/><sub><em>(CryptoHash#0)</em></sub>")
Mod_0("mod<br/><sub><em>(Mod#0)</em></sub>")
ReLU_0("relu fa:fa-circle-question<br/><sub><em>(ReLU#0)</em></sub>")
Tanh_0("tanh fa:fa-circle-question<br/><sub><em>(Tanh#0)</em></sub>"):::conditionCls
Sqrt_0("sqrt fa:fa-circle-question<br/><sub><em>(Sqrt#0)</em></sub>"):::conditionCls
Select_0("select<br/><sub><em>(Select#0)</em></sub>")
Producer_1(<em>Producer#1</em>):::producerCls
Producer_0-->|"0 [2, 3] Float32<br/>↓<br/>0"|CryptoHash_0
Producer_0-->|"0 [2, 3] Float32<br/>↓<br/>0"|ReLU_0
Producer_0-->|"0 [2, 3] Float32<br/>↓<br/>0"|Tanh_0
Producer_0-->|"0 [2, 3] Float32<br/>↓<br/>0"|Sqrt_0
CryptoHash_0-->|"0 [4] UInt64<br/>↓<br/>0"|Mod_0
Mod_0-->|"0 [4] UInt64<br/>↓<br/>0"|Select_0
ReLU_0-->|"0 [2, 3] Float32<br/>↓<br/>1"|Select_0
Tanh_0-->|"0 [2, 3] Float32<br/>↓<br/>2"|Select_0
Sqrt_0-->|"0 [2, 3] Float32<br/>↓<br/>3"|Select_0
Producer_1-->|"0 [1] UInt64<br/>↓<br/>1"|Mod_0
Select_0--->|"0 [2, 3] Float32<br/>↓"|output0((out#0)):::outputCls
classDef inputCls fill:#afa
classDef outputCls fill:#ffa
classDef externalCls fill:#ccc
classDef producerCls fill:#ccf
classDef genericCls fill:#f9f9ff,stroke-width:1px,stroke-dasharray: 5 5
classDef metaCls stroke-width:5px
classDef rootCls stroke:#f00
classDef producerCls_rootCls stroke:#f00,fill:#ccf
classDef genericCls_rootCls stroke:#f00,fill:#f9f9ff,stroke-width:1px,stroke-dasharray: 5 5
classDef metaCls_rootCls stroke:#f00,stroke-width:5px
Copyright © Eclipse Foundation, Inc. All Rights Reserved. Privacy Policy | Terms of Use | Copyright Agent