Skip to content
Snippets Groups Projects
Commit 1804f6f4 authored by Savanna Shaw's avatar Savanna Shaw Committed by Stewart Martin-Haugh
Browse files

Fix ROB prefetching configuration for probe triggers

Fix ROB prefetching configuration for probe triggers

Setting the ROBPrefetchingInputDecisions for the probe versions of the ROB prefetching algorithms that are used in purely CA based configuration (ATR-27934).
parent b41ae90c
No related branches found
No related tags found
No related merge requests found
...@@ -405,7 +405,7 @@ class MenuSequence(object): ...@@ -405,7 +405,7 @@ class MenuSequence(object):
if ROBPrefetching.StepRoI in flags.Trigger.ROBPrefetchingOptions: if ROBPrefetching.StepRoI in flags.Trigger.ROBPrefetchingOptions:
seqChildren = Sequence.getChildren() if hasattr(Sequence,'getChildren') else Sequence.Members seqChildren = Sequence.getChildren() if hasattr(Sequence,'getChildren') else Sequence.Members
for child in seqChildren: for child in seqChildren:
if hasProp(child,'ROBPrefetchingInputDecisions') and input_maker_output not in child.ROBPrefetchingInputDecisions and not input_maker_output.endswith('_probe'): if hasProp(child,'ROBPrefetchingInputDecisions') and input_maker_output not in child.ROBPrefetchingInputDecisions and not IsProbe:
locked = bool(child.isLocked()) if hasattr(child,'isLocked') else False locked = bool(child.isLocked()) if hasattr(child,'isLocked') else False
if locked: if locked:
child.unlock() child.unlock()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment