Skip to content

Commit

Permalink
fix materialized_arrays perf
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Oct 14, 2024
1 parent 77f1bbd commit e8b5806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytato/distributed/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def find_distributed_partition(
# processing below.
materialized_arrays = {a: None
for a in materialized_arrays_collector.materialized_arrays
if a not in received_arrays | sent_arrays}
if a not in received_arrays and a not in sent_arrays}

# "mso" for "materialized/sent/output"
output_arrays = dict.fromkeys(outputs._data.values())
Expand Down

0 comments on commit e8b5806

Please sign in to comment.