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
d1eb3b4d
Commit
d1eb3b4d
authored
1 month ago
by
Russel Arbore
Browse files
Options
Downloads
Patches
Plain Diff
loop canon bounds doesn't work for test2 in fork_join_tests
parent
44edca09
No related branches found
No related tags found
1 merge request
!188
Loop canon bound fix
Pipeline
#201718
passed
1 month ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
juno_samples/fork_join_tests/src/cpu.sch
+6
-0
6 additions, 0 deletions
juno_samples/fork_join_tests/src/cpu.sch
juno_samples/fork_join_tests/src/fork_join_tests.jn
+1
-1
1 addition, 1 deletion
juno_samples/fork_join_tests/src/fork_join_tests.jn
with
7 additions
and
1 deletion
juno_samples/fork_join_tests/src/cpu.sch
+
6
−
0
View file @
d1eb3b4d
...
@@ -25,6 +25,12 @@ gvn(*);
...
@@ -25,6 +25,12 @@ gvn(*);
phi-elim(*);
phi-elim(*);
dce(*);
dce(*);
xdot[true](auto.test2);
lift-dc-math(auto.test2);
xdot[true](auto.test2);
loop-bound-canon(auto.test2);
xdot[true](auto.test2);
fixpoint panic after 20 {
fixpoint panic after 20 {
forkify(*);
forkify(*);
fork-guard-elim(*);
fork-guard-elim(*);
...
...
This diff is collapsed.
Click to expand it.
juno_samples/fork_join_tests/src/fork_join_tests.jn
+
1
−
1
View file @
d1eb3b4d
...
@@ -12,7 +12,7 @@ fn test1(input : i32) -> i32[4, 4] {
...
@@ -12,7 +12,7 @@ fn test1(input : i32) -> i32[4, 4] {
#[entry]
#[entry]
fn
test2
(
input
:
i32
)
->
i32
[
4
,
5
]
{
fn
test2
(
input
:
i32
)
->
i32
[
4
,
5
]
{
let
arr
:
i32
[
4
,
5
];
let
arr
:
i32
[
4
,
5
];
@
loop1
for
i
=
0
to
8
{
@
loop1
for
i
=
1
to
9
{
@
loop2
for
k
=
0
to
5
{
@
loop2
for
k
=
0
to
5
{
@
loop3
for
j
=
0
to
4
{
@
loop3
for
j
=
0
to
4
{
arr
[
j
,
k
]
+=
input
;
arr
[
j
,
k
]
+=
input
;
...
...
This diff is collapsed.
Click to expand it.
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