Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hercules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
Hercules
Commits
789d72b1
Commit
789d72b1
authored
4 weeks ago
by
Russel Arbore
Browse files
Options
Downloads
Patches
Plain Diff
whoops
parent
d83d48cf
No related branches found
No related tags found
1 merge request
!198
Optimization for miranda
Pipeline
#201851
passed
4 weeks ago
Stage: test
This commit is part of merge request
!198
. Comments created here will be created in the context of that merge request.
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
juno_samples/edge_detection/src/cpu.sch
+2
-18
2 additions, 18 deletions
juno_samples/edge_detection/src/cpu.sch
with
2 additions
and
18 deletions
juno_samples/edge_detection/src/cpu.sch
+
2
−
18
Edit
View file @
789d72b1
...
...
@@ -40,14 +40,6 @@ fixpoint {
fork-coalesce(laplacian_estimate);
}
simpl!(laplacian_estimate);
let par = laplacian_estimate@image_loop \ laplacian_estimate@filter_loop;
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);
fork-coalesce(laplacian_estimate, laplacian_estimate_body);
simpl!(laplacian_estimate, laplacian_estimate_body);
no-memset(zero_crossings@res, zero_crossings@shr1, zero_crossings@shr2);
fixpoint {
...
...
@@ -56,14 +48,6 @@ fixpoint {
fork-coalesce(zero_crossings);
}
simpl!(zero_crossings);
let par = zero_crossings@image_loop \ zero_crossings@filter_loop;
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);
fork-coalesce(zero_crossings, zero_crossings_body);
simpl!(zero_crossings, zero_crossings_body);
no-memset(gradient@res);
fixpoint {
...
...
@@ -105,8 +89,8 @@ simpl!(reject_zero_crossings);
async-call(edge_detection@le, edge_detection@zc);
fork-split(gaussian_smoothing_body, laplacian_estimate
_body
, zero_crossings
_body
, gradient, reject_zero_crossings);
unforkify(gaussian_smoothing_body, laplacian_estimate
_body
, zero_crossings
_body
, gradient, reject_zero_crossings);
fork-split(gaussian_smoothing_body, laplacian_estimate, zero_crossings, gradient, reject_zero_crossings);
unforkify(gaussian_smoothing_body, laplacian_estimate, zero_crossings, gradient, reject_zero_crossings);
simpl!(*);
...
...
This diff is collapsed.
Click to expand it.
rarbore2
@rarbore2
mentioned in commit
90a737cf
·
4 weeks ago
mentioned in commit
90a737cf
mentioned in commit 90a737cf55d2915bb262a646adca17cd94ec1725
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment