Files
metagraphoptimization.jl/src/task/print.jl

10 lines
249 B
Julia
Raw Normal View History

"""
show(io::IO, t::FusedComputeTask)
Print a string representation of the fused compute task to io.
"""
function show(io::IO, t::FusedComputeTask)
2023-08-25 10:48:22 +02:00
(T1, T2) = get_types(t)
return print(io, "ComputeFuse(", T1(), ", ", T2(), ")")
end