Created
February 15, 2024 00:36
-
-
Save ingted/a5bd1c6433bb7818df826489be7dec41 to your computer and use it in GitHub Desktop.
akkling graph
This file contains hidden or 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
let pickMaxOf3 = Graph.create (fun b -> graph b { | |
let! zip1 = ZipWith.create max<int> | |
let! zip2 = ZipWith.create max<int> | |
b.From zip1.Out =>> zip2.In0 | |
|> ignore | |
return UniformFanInShape(zip2.Out, zip1.In0, zip1.In1, zip2.In1) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment