Distinguish proxy and exact state verdicts
This commit is contained in:
@@ -695,10 +695,16 @@ def analyze(
|
|||||||
if decision_contrast is None:
|
if decision_contrast is None:
|
||||||
verdict = "STOP: real Running proxy has insufficient exact simulator support"
|
verdict = "STOP: real Running proxy has insufficient exact simulator support"
|
||||||
elif decision_contrast["total"] < 0:
|
elif decision_contrast["total"] < 0:
|
||||||
verdict = (
|
if exact_contrast is not None:
|
||||||
"State-composition mismatch is insufficient: after reweighting Frontier "
|
verdict = (
|
||||||
"to measured real decode composition, it still predicts TP8 faster."
|
"State-composition mismatch is insufficient: after reweighting Frontier "
|
||||||
)
|
"to measured real decode composition, it still predicts TP8 faster."
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
verdict = (
|
||||||
|
"Active-batch-count mismatch is insufficient: after reweighting Frontier "
|
||||||
|
"to the frozen-real Running proxy, it still predicts TP8 faster."
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
verdict = (
|
verdict = (
|
||||||
"Coarse active-batch state can flip Frontier's ordering, but iteration-level "
|
"Coarse active-batch state can flip Frontier's ordering, but iteration-level "
|
||||||
|
|||||||
Reference in New Issue
Block a user