Reviewed-on: Rubydragon/MetagraphOptimization.jl#6 Co-authored-by: Anton Reinhard <anton.reinhard@proton.me> Co-committed-by: Anton Reinhard <anton.reinhard@proton.me>
10 lines
249 B
Julia
10 lines
249 B
Julia
"""
|
|
show(io::IO, t::FusedComputeTask)
|
|
|
|
Print a string representation of the fused compute task to io.
|
|
"""
|
|
function show(io::IO, t::FusedComputeTask)
|
|
(T1, T2) = get_types(t)
|
|
return print(io, "ComputeFuse(", T1(), ", ", T2(), ")")
|
|
end
|