"...matmul/git@gitlab.engr.illinois.edu:llvm/hercules.git" did not exist on "9131736ee9d7f9fb3ab1610f10cbcde85302b0c7"
Fork reshape
Compare changes
Implements a fork-reshape
pass in the scheduling language which can be used to coalesce a selection of fork-joins, interchange them into a specified order, and then split them into a specified series of chunks.
Adds a parallel and tiled schedule for matmul that uses fork-reshape
to keep the schedule quite clean.
Also adds tuples to the scheduling language and a new form of let-statements that allow destructing tuples, it's not the nicest (it's not a general pattern handler and will only cause an error if there are too many fields on the left-hand side, not too few, but it's enough to make the code that uses fork-reshape
cleaner).
Includes a few other tweaks I ran into