Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/ParquetMsg.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,9 @@ module ParquetMsg {

const ref DataDom = getDomain(e);

for (off, filedom, filename) in zip(this.offsets, subdoms, this.filenames) {
forall (off, filedom, filename) in zip(this.offsets,
subdoms,
this.filenames) with (ref this) {
for locdom in DataDom.localSubdomains() {
const intersection = domain_intersection(locdom, filedom);
if intersection.size > 0 {
Expand Down
Loading