From d11e7755782ec5a0bcbc5759657063adcd4a37af Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Tue, 25 Apr 2017 10:49:05 +0200 Subject: [PATCH] Fix hashing of stage 3 input --- python/dune/perftool/sumfact/accumulation.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/python/dune/perftool/sumfact/accumulation.py b/python/dune/perftool/sumfact/accumulation.py index aacae7f4..c1305ced 100644 --- a/python/dune/perftool/sumfact/accumulation.py +++ b/python/dune/perftool/sumfact/accumulation.py @@ -61,8 +61,15 @@ def accum_iname(restriction, bound, i): return sumfact_iname(bound, "accum") -class AlreadyAssembledInput(SumfactKernelInputBase, ImmutableRecord): - pass +class AlreadyAssembledInput(SumfactKernelInputBase): + def __init__(self, index): + self.index = index + + def __eq__(self, other): + return type(self) == type(other) and self.index == other.index + + def __hash__(self): + return 0 @backend(interface="accum_insn", name="sumfact") @@ -91,8 +98,6 @@ def generate_accumulation_instruction(visitor, accterm, measure, subdomain_id): accum_index = None if visitor.indices: accum_index = visitor.indices[0] - if accterm.argument.index: - accum_index = accterm.argument.index[0]._value jacobian_inames = tuple() if accterm.is_jacobian: -- GitLab