Skip to content

Commit

Permalink
chore: remove debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
yinengy committed Apr 18, 2023
1 parent 4843c13 commit 58b1ec3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions parla/parray/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,6 @@ def _coherence_read(self, device_id: int = None, slices: SlicesType = None) -> N
with self._coherence._lock: # locks involve
operations = self._coherence.read(device_id, self._slices_hash)
self._process_operations(operations, slices)
print(f"read: {self._name}")

def _coherence_write(self, device_id: int = None, slices: SlicesType = None) -> None:
"""Tell the coherence protocol a write happened on a device.
Expand All @@ -397,7 +396,6 @@ def _coherence_write(self, device_id: int = None, slices: SlicesType = None) ->
with self._coherence._lock: # locks involve
operations = self._coherence.write(device_id, self._slices_hash)
self._process_operations(operations, slices)
print(f"write: {self._name}")

# Device management methods:

Expand Down

0 comments on commit 58b1ec3

Please sign in to comment.