Skip to content

Commit

Permalink
use seq schedule both times
Browse files Browse the repository at this point in the history
  • Loading branch information
oflatt committed Nov 13, 2024
1 parent 62f67d0 commit 0a5ceb1
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions dag_in_context/src/schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,24 +115,6 @@ pub fn mk_sequential_schedule() -> Vec<String> {
/// Parallel schedule must return a single string,
/// a schedule that runs optimizations over the egraph.
pub fn parallel_schedule() -> Vec<String> {
let helpers = helpers();

vec![format!(
"
(run-schedule
(repeat 2
{helpers}
all-optimizations
)
(repeat 4
{helpers}
cheap-optimizations
)
{helpers}
)
"
)]
// TODO currently just the sequential schedule
mk_sequential_schedule()
}

0 comments on commit 0a5ceb1

Please sign in to comment.