Skip to content
Snippets Groups Projects
Commit 3d1e5b15 authored by Russel Arbore's avatar Russel Arbore
Browse files

Outline constants as well

parent 37567e75
No related branches found
No related tags found
1 merge request!198Optimization for miranda
Pipeline #201858 passed
This commit is part of merge request !198. Comments created here will be created in the context of that merge request.
......@@ -45,7 +45,8 @@ fork-tile[4, 1, false, false](par);
fork-tile[4, 0, false, false](par);
fork-interchange[1, 2](par);
let split = fork-split(par);
let laplacian_estimate_body = outline(split._1_laplacian_estimate.fj2);
let body = split._1_laplacian_estimate.fj2 | laplacian_estimate.shr1 | laplacian_estimate.shr2;
let laplacian_estimate_body = outline(body);
fork-coalesce(laplacian_estimate, laplacian_estimate_body);
simpl!(laplacian_estimate, laplacian_estimate_body);
......@@ -61,7 +62,8 @@ fork-tile[4, 1, false, false](par);
fork-tile[4, 0, false, false](par);
fork-interchange[1, 2](par);
let split = fork-split(par);
let zero_crossings_body = outline(split._2_zero_crossings.fj2);
let body = split._2_zero_crossings.fj2 | zero_crossings.shr1 | zero_crossings.shr2;
let zero_crossings_body = outline(body);
fork-coalesce(zero_crossings, zero_crossings_body);
simpl!(zero_crossings, zero_crossings_body);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment