Make FusedComputeTasks usable in execution

This commit is contained in:
2023-09-25 08:39:59 +02:00
committed by Anton Reinhard
parent f8a591991c
commit c428613c80
16 changed files with 548 additions and 283 deletions

View File

@ -1,6 +1,6 @@
function test_random_walk(g::DAG, n::Int64)
# the purpose here is to do "random" operations and reverse them again and validate that the graph stays the same and doesn't diverge
function random_walk!(g::DAG, n::Int64)
# the purpose here is to do "random" operations on the graph to simulate an optimizer
reset_graph!(g)
properties = get_properties(g)
@ -32,7 +32,7 @@ function test_random_walk(g::DAG, n::Int64)
end
end
return reset_graph!(g)
return nothing
end
function reduce_all!(g::DAG)