-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hydroflow_lang): allow
reduce()
to be referenceable as a singl…
…eton, fix docs and bugs (#1150) * fixed bug: accumulator closures could have return values, which would be ignored * updated docs
- Loading branch information
1 parent
82b3030
commit 5679bfb
Showing
10 changed files
with
501 additions
and
116 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
hydroflow/tests/snapshots/surface_singleton__reduce_singleton@graphvis_dot.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
source: hydroflow/tests/surface_singleton.rs | ||
expression: "df.meta_graph().unwrap().to_dot(&Default::default())" | ||
--- | ||
digraph { | ||
node [fontname="Monaco,Menlo,Consolas,"Droid Sans Mono",Inconsolata,"Courier New",monospace", style=filled]; | ||
edge [fontname="Monaco,Menlo,Consolas,"Droid Sans Mono",Inconsolata,"Courier New",monospace"]; | ||
n1v1 [label="(n1v1) source_iter(1..=10)", shape=invhouse, fillcolor="#88aaff"] | ||
n2v1 [label="(n2v1) source_iter(3..=5)", shape=invhouse, fillcolor="#88aaff"] | ||
n3v1 [label="(n3v1) reduce(|a, b| *a = std::cmp::max(*a, b))", shape=invhouse, fillcolor="#88aaff"] | ||
n4v1 [label="(n4v1) filter(|&value| { value <= max_of_stream2.unwrap_or(0) })", shape=invhouse, fillcolor="#88aaff"] | ||
n5v1 [label="(n5v1) map(|x| (context.current_tick(), x))", shape=invhouse, fillcolor="#88aaff"] | ||
n6v1 [label="(n6v1) for_each(|x| filter_send.send(x).unwrap())", shape=house, fillcolor="#ffff88"] | ||
n7v1 [label="(n7v1) map(|x| (context.current_tick(), x))", shape=invhouse, fillcolor="#88aaff"] | ||
n8v1 [label="(n8v1) for_each(|x| max_send.send(x).unwrap())", shape=house, fillcolor="#ffff88"] | ||
n9v1 [label="(n9v1) handoff", shape=parallelogram, fillcolor="#ddddff"] | ||
n2v1 -> n9v1 | ||
n5v1 -> n6v1 | ||
n4v1 -> n5v1 | ||
n1v1 -> n4v1 | ||
n7v1 -> n8v1 | ||
n3v1 -> n7v1 | ||
n9v1 -> n3v1 [color=red] | ||
n3v1 -> n4v1 [color=red] | ||
subgraph "cluster n1v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_1v1\nstratum 0" | ||
n2v1 | ||
subgraph "cluster_sg_1v1_var_stream2" { | ||
label="var stream2" | ||
n2v1 | ||
} | ||
} | ||
subgraph "cluster n2v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_2v1\nstratum 2" | ||
n1v1 | ||
n4v1 | ||
n5v1 | ||
n6v1 | ||
subgraph "cluster_sg_2v1_var_filtered_stream1" { | ||
label="var filtered_stream1" | ||
n4v1 | ||
n5v1 | ||
n6v1 | ||
} | ||
subgraph "cluster_sg_2v1_var_stream1" { | ||
label="var stream1" | ||
n1v1 | ||
} | ||
} | ||
subgraph "cluster n3v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_3v1\nstratum 1" | ||
n3v1 | ||
n7v1 | ||
n8v1 | ||
subgraph "cluster_sg_3v1_var_max_of_stream2" { | ||
label="var max_of_stream2" | ||
n3v1 | ||
} | ||
} | ||
} | ||
|
56 changes: 56 additions & 0 deletions
56
hydroflow/tests/snapshots/surface_singleton__reduce_singleton@graphvis_mermaid.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
source: hydroflow/tests/surface_singleton.rs | ||
expression: "df.meta_graph().unwrap().to_mermaid(&Default::default())" | ||
--- | ||
%%{init:{'theme':'base','themeVariables':{'clusterBkg':'#ddd','clusterBorder':'#888'}}}%% | ||
flowchart TD | ||
classDef pullClass fill:#8af,stroke:#000,text-align:left,white-space:pre | ||
classDef pushClass fill:#ff8,stroke:#000,text-align:left,white-space:pre | ||
classDef otherClass fill:#fdc,stroke:#000,text-align:left,white-space:pre | ||
linkStyle default stroke:#aaa | ||
1v1[\"(1v1) <code>source_iter(1..=10)</code>"/]:::pullClass | ||
2v1[\"(2v1) <code>source_iter(3..=5)</code>"/]:::pullClass | ||
3v1[\"(3v1) <code>reduce(|a, b| *a = std::cmp::max(*a, b))</code>"/]:::pullClass | ||
4v1[\"(4v1) <code>filter(|&value| { value <= max_of_stream2.unwrap_or(0) })</code>"/]:::pullClass | ||
5v1[\"(5v1) <code>map(|x| (context.current_tick(), x))</code>"/]:::pullClass | ||
6v1[/"(6v1) <code>for_each(|x| filter_send.send(x).unwrap())</code>"\]:::pushClass | ||
7v1[\"(7v1) <code>map(|x| (context.current_tick(), x))</code>"/]:::pullClass | ||
8v1[/"(8v1) <code>for_each(|x| max_send.send(x).unwrap())</code>"\]:::pushClass | ||
9v1["(9v1) <code>handoff</code>"]:::otherClass | ||
2v1-->9v1 | ||
5v1-->6v1 | ||
4v1-->5v1 | ||
1v1-->4v1 | ||
7v1-->8v1 | ||
3v1-->7v1 | ||
9v1--x3v1; linkStyle 6 stroke:red | ||
3v1--x4v1; linkStyle 7 stroke:red | ||
subgraph sg_1v1 ["sg_1v1 stratum 0"] | ||
2v1 | ||
subgraph sg_1v1_var_stream2 ["var <tt>stream2</tt>"] | ||
2v1 | ||
end | ||
end | ||
subgraph sg_2v1 ["sg_2v1 stratum 2"] | ||
1v1 | ||
4v1 | ||
5v1 | ||
6v1 | ||
subgraph sg_2v1_var_filtered_stream1 ["var <tt>filtered_stream1</tt>"] | ||
4v1 | ||
5v1 | ||
6v1 | ||
end | ||
subgraph sg_2v1_var_stream1 ["var <tt>stream1</tt>"] | ||
1v1 | ||
end | ||
end | ||
subgraph sg_3v1 ["sg_3v1 stratum 1"] | ||
3v1 | ||
7v1 | ||
8v1 | ||
subgraph sg_3v1_var_max_of_stream2 ["var <tt>max_of_stream2</tt>"] | ||
3v1 | ||
end | ||
end | ||
|
61 changes: 61 additions & 0 deletions
61
hydroflow/tests/snapshots/surface_singleton__reduce_singleton_push@graphvis_dot.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
source: hydroflow/tests/surface_singleton.rs | ||
expression: "df.meta_graph().unwrap().to_dot(&Default::default())" | ||
--- | ||
digraph { | ||
node [fontname="Monaco,Menlo,Consolas,"Droid Sans Mono",Inconsolata,"Courier New",monospace", style=filled]; | ||
edge [fontname="Monaco,Menlo,Consolas,"Droid Sans Mono",Inconsolata,"Courier New",monospace"]; | ||
n1v1 [label="(n1v1) source_iter(1..=10)", shape=invhouse, fillcolor="#88aaff"] | ||
n2v1 [label="(n2v1) source_iter(3..=5)", shape=invhouse, fillcolor="#88aaff"] | ||
n3v1 [label="(n3v1) reduce(|a, b| *a = std::cmp::max(*a, b))", shape=house, fillcolor="#ffff88"] | ||
n4v1 [label="(n4v1) filter(|&value| { value <= max_of_stream2.unwrap_or(0) })", shape=invhouse, fillcolor="#88aaff"] | ||
n5v1 [label="(n5v1) map(|x| (context.current_tick(), x))", shape=invhouse, fillcolor="#88aaff"] | ||
n6v1 [label="(n6v1) for_each(|x| filter_send.send(x).unwrap())", shape=house, fillcolor="#ffff88"] | ||
n7v1 [label="(n7v1) handoff", shape=parallelogram, fillcolor="#ddddff"] | ||
n2v1 -> n7v1 | ||
n5v1 -> n6v1 | ||
n4v1 -> n5v1 | ||
n1v1 -> n4v1 | ||
n7v1 -> n3v1 [color=red] | ||
n3v1 -> n4v1 [color=red] | ||
subgraph "cluster n1v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_1v1\nstratum 0" | ||
n2v1 | ||
subgraph "cluster_sg_1v1_var_stream2" { | ||
label="var stream2" | ||
n2v1 | ||
} | ||
} | ||
subgraph "cluster n2v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_2v1\nstratum 1" | ||
n3v1 | ||
subgraph "cluster_sg_2v1_var_max_of_stream2" { | ||
label="var max_of_stream2" | ||
n3v1 | ||
} | ||
} | ||
subgraph "cluster n3v1" { | ||
fillcolor="#dddddd" | ||
style=filled | ||
label = "sg_3v1\nstratum 2" | ||
n1v1 | ||
n4v1 | ||
n5v1 | ||
n6v1 | ||
subgraph "cluster_sg_3v1_var_filtered_stream1" { | ||
label="var filtered_stream1" | ||
n4v1 | ||
n5v1 | ||
n6v1 | ||
} | ||
subgraph "cluster_sg_3v1_var_stream1" { | ||
label="var stream1" | ||
n1v1 | ||
} | ||
} | ||
} | ||
|
50 changes: 50 additions & 0 deletions
50
hydroflow/tests/snapshots/surface_singleton__reduce_singleton_push@graphvis_mermaid.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
source: hydroflow/tests/surface_singleton.rs | ||
expression: "df.meta_graph().unwrap().to_mermaid(&Default::default())" | ||
--- | ||
%%{init:{'theme':'base','themeVariables':{'clusterBkg':'#ddd','clusterBorder':'#888'}}}%% | ||
flowchart TD | ||
classDef pullClass fill:#8af,stroke:#000,text-align:left,white-space:pre | ||
classDef pushClass fill:#ff8,stroke:#000,text-align:left,white-space:pre | ||
classDef otherClass fill:#fdc,stroke:#000,text-align:left,white-space:pre | ||
linkStyle default stroke:#aaa | ||
1v1[\"(1v1) <code>source_iter(1..=10)</code>"/]:::pullClass | ||
2v1[\"(2v1) <code>source_iter(3..=5)</code>"/]:::pullClass | ||
3v1[/"(3v1) <code>reduce(|a, b| *a = std::cmp::max(*a, b))</code>"\]:::pushClass | ||
4v1[\"(4v1) <code>filter(|&value| { value <= max_of_stream2.unwrap_or(0) })</code>"/]:::pullClass | ||
5v1[\"(5v1) <code>map(|x| (context.current_tick(), x))</code>"/]:::pullClass | ||
6v1[/"(6v1) <code>for_each(|x| filter_send.send(x).unwrap())</code>"\]:::pushClass | ||
7v1["(7v1) <code>handoff</code>"]:::otherClass | ||
2v1-->7v1 | ||
5v1-->6v1 | ||
4v1-->5v1 | ||
1v1-->4v1 | ||
7v1--x3v1; linkStyle 4 stroke:red | ||
3v1--x4v1; linkStyle 5 stroke:red | ||
subgraph sg_1v1 ["sg_1v1 stratum 0"] | ||
2v1 | ||
subgraph sg_1v1_var_stream2 ["var <tt>stream2</tt>"] | ||
2v1 | ||
end | ||
end | ||
subgraph sg_2v1 ["sg_2v1 stratum 1"] | ||
3v1 | ||
subgraph sg_2v1_var_max_of_stream2 ["var <tt>max_of_stream2</tt>"] | ||
3v1 | ||
end | ||
end | ||
subgraph sg_3v1 ["sg_3v1 stratum 2"] | ||
1v1 | ||
4v1 | ||
5v1 | ||
6v1 | ||
subgraph sg_3v1_var_filtered_stream1 ["var <tt>filtered_stream1</tt>"] | ||
4v1 | ||
5v1 | ||
6v1 | ||
end | ||
subgraph sg_3v1_var_stream1 ["var <tt>stream1</tt>"] | ||
1v1 | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.