/* Schedule 5765 of 2025/01/27 00:02:59 */ #include "driver.h" #include "schedule.h" #include schedule_t make_schedule() { schedule_t sched; int nthread = 2; sched.kind = SET; sched.num_ops = 3; sched.nthread = nthread; sched.npreAdd = 1; sched.preAdds = malloc(1*sizeof(step_t)); sched.preAdds[0] = schedule_make_step_2(ADD, 0, -2); sched.nstep = 3; sched.nsteps = malloc(nthread*sizeof(int)); sched.nsteps[0] = 2; sched.nsteps[1] = 1; sched.steps = malloc(nthread*sizeof(step_t*)); for (int i=0; i