Skip to content

Instantly share code, notes, and snippets.

@ingted
Created February 15, 2024 00:36
Show Gist options
  • Save ingted/a5bd1c6433bb7818df826489be7dec41 to your computer and use it in GitHub Desktop.
Save ingted/a5bd1c6433bb7818df826489be7dec41 to your computer and use it in GitHub Desktop.
akkling graph
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