Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Reset numbering when generating #722

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Changes from all 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
8 changes: 7 additions & 1 deletion pyop2/codegen/rep2loopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import pymbolic.primitives as pym

from collections import OrderedDict, defaultdict
from functools import singledispatch, reduce
from functools import singledispatch, reduce, partial
import itertools
import operator

Expand Down Expand Up @@ -401,6 +401,12 @@ def bounds(exprs):


def generate(builder, wrapper_name=None):
# Reset all terminal counters to avoid generated code becoming different across ranks
Argument._count = defaultdict(partial(itertools.count))
Index._count = itertools.count()
Materialise._count = itertools.count()
RuntimeIndex._count = itertools.count()

if builder.layer_index is not None:
outer_inames = frozenset([builder._loop_index.name,
builder.layer_index.name])
Expand Down
Loading