It would be beneficial for low-level code generation if we have a more explicit keyword for scheduling. One proposal is a @column macro (it's implemented in AST at the moment), but need to consider more if this is sufficient, an example syntax looks like
@column for k in 1:n
k => H
end
this will give the compiler a hint that this code block should be arranged into the same time slice.
It would be beneficial for low-level code generation if we have a more explicit keyword for scheduling. One proposal is a
@column
macro (it's implemented in AST at the moment), but need to consider more if this is sufficient, an example syntax looks likethis will give the compiler a hint that this code block should be arranged into the same time slice.