Skip to content
Snippets Groups Projects
Commit b1098c24 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Extend docstring of _has_exclusive_writes

parent 6b857cff
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,8 @@ def _has_exclusive_writes(assignment_collection): ...@@ -25,6 +25,8 @@ def _has_exclusive_writes(assignment_collection):
Simple check for exclusive (non-overlapping) writes. Simple check for exclusive (non-overlapping) writes.
I.e. AssignmentCollection can be executed safely in parallel without caring about race conditions. I.e. AssignmentCollection can be executed safely in parallel without caring about race conditions.
No writes on same spatial location (considering all possible shifts). No writes on same spatial location (considering all possible shifts).
The checked condition might be violated if using DiffModes.TRANSPOSED
""" """
assignments = assignment_collection.main_assignments assignments = assignment_collection.main_assignments
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment