Skip to content
Snippets Groups Projects

Round 1 of rodinia schedule optimization

Merged rarbore2 requested to merge rodinia_opt1 into main
4 files
+ 32
5
Compare changes
  • Side-by-side
  • Inline
Files
4
gvn(*);
dce(*);
phi-elim(*);
dce(*);
crc(*);
dce(*);
slf(*);
dce(*);
macro simpl!(X) {
ccp(X);
simplify-cfg(X);
lift-dc-math(X);
gvn(X);
phi-elim(X);
dce(X);
infer-schedules(X);
}
let auto = auto-outline(backprop);
cpu(auto.backprop);
inline(auto.backprop);
inline(auto.backprop);
simpl!(*);
inline(layer_forward);
delete-uncalled(*);
sroa[true](*);
dce(*);
float-collections(*);
reuse-products(*);
dce(*);
no-memset(layer_forward@res);
lift-dc-math(*);
loop-bound-canon(*);
fixpoint {
forkify(*);
fork-guard-elim(*);
fork-coalesce(*);
}
gcm(*);
Loading