Skip to content
Snippets Groups Projects

Basic IR schedules framework

Merged rarbore2 requested to merge schedules into main
3 files
+ 43
14
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -20,9 +20,9 @@ pub enum Schedule {
*/
#[derive(Debug, Clone)]
pub struct Plan {
schedules: Vec<Vec<Schedule>>,
partitions: Vec<PartitionID>,
num_partitions: usize,
pub schedules: Vec<Vec<Schedule>>,
pub partitions: Vec<PartitionID>,
pub num_partitions: usize,
}
define_id_type!(PartitionID);
Loading