This commit is contained in:
2023-06-08 01:39:01 +02:00
parent 5bf660618d
commit 2a1b161462
13 changed files with 199 additions and 6 deletions

View File

@ -27,6 +27,10 @@ end
struct ComputeTaskU <: AbstractComputeTask
end
# task that sums all its inputs, n children
struct ComputeTaskSum <: AbstractComputeTask
end
struct FusedComputeTask{T1<:AbstractComputeTask, T2<:AbstractComputeTask} <: AbstractComputeTask
end