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
Wiki
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
Ben Sepanski
loopy
Commits
30e44717
Commit
30e44717
authored
13 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Barrier Insertion: Be less strict in dep checking when checking for pre-barriers.
parent
98395146
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
loopy/schedule.py
+12
-3
12 additions, 3 deletions
loopy/schedule.py
with
12 additions
and
3 deletions
loopy/schedule.py
+
12
−
3
View file @
30e44717
...
...
@@ -44,7 +44,7 @@ def gather_schedule_subloop(schedule, start_idx):
def
get_barrier_needing_dependency
(
kernel
,
target
,
source
):
def
get_barrier_needing_dependency
(
kernel
,
target
,
source
,
unordered
=
False
):
from
loopy.kernel
import
Instruction
if
not
isinstance
(
source
,
Instruction
):
source
=
kernel
.
id_to_insn
[
source
]
...
...
@@ -64,7 +64,8 @@ def get_barrier_needing_dependency(kernel, target, source):
war
=
tgt_write
&
src_read
for
var_name
in
raw
|
war
:
assert
source
.
id
in
target
.
insn_deps
if
not
unordered
:
assert
source
.
id
in
target
.
insn_deps
return
(
target
,
source
,
var_name
)
if
source
is
target
:
...
...
@@ -83,10 +84,18 @@ def get_barrier_needing_dependency(kernel, target, source):
def
get_barrier_dependent_in_schedule
(
kernel
,
source
,
schedule
):
"""
:arg source: an instruction id for the source of the dependency
"""
unordered
=
False
for
sched_item
in
schedule
:
if
isinstance
(
sched_item
,
RunInstruction
)
and
sched_item
.
insn_id
==
source
:
unordered
=
True
for
sched_item
in
schedule
:
if
isinstance
(
sched_item
,
RunInstruction
):
temp_res
=
get_barrier_needing_dependency
(
kernel
,
sched_item
.
insn_id
,
source
)
kernel
,
sched_item
.
insn_id
,
source
,
unordered
=
unordered
)
if
temp_res
:
return
temp_res
...
...
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