Skip to content
Snippets Groups Projects
Commit 53e4dc91 authored by Christoph Schwarzmeier's avatar Christoph Schwarzmeier
Browse files

Merge branch 'bugfix_fast_subs_rng_node' into 'master'

BugFix of the fast_subs function in rng nodes.

See merge request pycodegen/pystencils!155
parents e87b4daf ffddc885
Branches
Tags
1 merge request!155BugFix of the fast_subs function in rng nodes.
Pipeline #23647 passed with stages
in 6 minutes and 28 seconds
...@@ -61,7 +61,7 @@ class RNGBase(CustomCodeNode): ...@@ -61,7 +61,7 @@ class RNGBase(CustomCodeNode):
result.update(loop_counters) result.update(loop_counters)
return result return result
def fast_subs(self, _): def fast_subs(self, *_):
return self # nothing to replace inside this node - would destroy intermediate "dummy" by re-creating them return self # nothing to replace inside this node - would destroy intermediate "dummy" by re-creating them
def get_code(self, dialect, vector_instruction_set): def get_code(self, dialect, vector_instruction_set):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment