Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loopy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Andreas Klöckner
loopy
Merge requests
!84
Clean up use of 'iname' variable in generate_sequential_loop_dim_code (found by
@mattwala
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Clean up use of 'iname' variable in generate_sequential_loop_dim_code (found by
@mattwala
)
fix-leaked-variable-in-seq-codegen
into
master
Overview
2
Commits
5
Pipelines
4
Changes
1
Merged
Andreas Klöckner
requested to merge
fix-leaked-variable-in-seq-codegen
into
master
8 years ago
Overview
2
Commits
5
Pipelines
4
Changes
1
Expand
1
0
Merge request reports
Viewing commit
0bae9645
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
0bae9645
Fix generated for loop code in test_tight_loop_bounds_codegen
· 0bae9645
Andreas Klöckner
authored
8 years ago
test/test_loopy.py
+
2
−
2
Options
@@ -1948,8 +1948,8 @@ def test_tight_loop_bounds_codegen():
for_loop
=
\
"
for (int j =
"
\
"
(
l
id(0) == 0 &&
g
id(0) == 0 ? 0 : -2 +
10
*
g
id(0) +
2
*
l
id(0));
"
\
"
j <= (
l
id(0) == 0 &&
-1 + g
id(0) == 0 ? 9 : 2 * lid(0)); ++j)
"
"
(
g
id(0) == 0 &&
l
id(0) == 0 ? 0 : -2 +
2
*
l
id(0) +
10
*
g
id(0));
"
\
"
j <= (
-1 + g
id(0) == 0 &&
l
id(0) == 0 ? 9 : 2 * lid(0)); ++j)
"
assert
for_loop
in
cgr
.
device_code
()
Loading