Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Oct 17, 2023
1 parent 156aab5 commit d044111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyop2/parloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def _l2g_idxs(self):
seen = set()
indices = []
for i, (lknl_arg, gknl_arg, pl_arg) in enumerate(self.zipped_arguments):
if (isinstance(gknl_arg, DatKernelArg) and pl_arg.data not in seen
if (isinstance(gknl_arg, (DatKernelArg, MixedDatKernelArg)) and pl_arg.data not in seen
and gknl_arg.is_indirect
and lknl_arg.access in {Access.INC, Access.MIN, Access.MAX}):
indices.append(i)
Expand Down

0 comments on commit d044111

Please sign in to comment.