summaryrefslogtreecommitdiff
path: root/experiments/analyze_verified.py
diff options
context:
space:
mode:
authorYurenHao0426 <Blackhao0426@gmail.com>2026-07-21 08:53:20 -0500
committerYurenHao0426 <Blackhao0426@gmail.com>2026-07-21 08:53:20 -0500
commit65fdc3dfd67b1ac61f977fafa363e7a89ed0da57 (patch)
tree0b89e14a3776066b6233d932be210488fda9f8d9 /experiments/analyze_verified.py
parent262c6d9ef3f0461218c1a5e632fc7dd6357e0a20 (diff)
analysis: include exact EP architecture match
Diffstat (limited to 'experiments/analyze_verified.py')
-rwxr-xr-xexperiments/analyze_verified.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/experiments/analyze_verified.py b/experiments/analyze_verified.py
index 50863b5..da3c923 100755
--- a/experiments/analyze_verified.py
+++ b/experiments/analyze_verified.py
@@ -141,6 +141,7 @@ def print_ep_match(root):
records = read_many([
os.path.join(root, "ep_original_v2_*.json"),
os.path.join(root, "ep_match_v1_*.json"),
+ os.path.join(root, "ep_archmatch_v1_*.json"),
])
groups = {}
for record in records:
@@ -167,6 +168,7 @@ def provenance_audit(root):
os.path.join(root, "baseline_budget_v1_mnist_ff_*.json"),
os.path.join(root, "ep_original_v2_*.json"),
os.path.join(root, "ep_match_v1_*.json"),
+ os.path.join(root, "ep_archmatch_v1_*.json"),
])
dirty = [r["_path"] for r in records if r.get("provenance", {}).get("git_dirty") is not False]
print(f"\n\nProvenance: {len(records)} files audited; {len(dirty)} dirty or unknown.")