summaryrefslogtreecommitdiff
path: root/experiments/conv_run.py
diff options
context:
space:
mode:
authorYurenHao0426 <Blackhao0426@gmail.com>2026-07-22 15:14:59 -0500
committerYurenHao0426 <Blackhao0426@gmail.com>2026-07-22 15:14:59 -0500
commitf75412664634494b3a6ebefd1f70d63a0f3e18c5 (patch)
treede6645194392cd28fca7c73ed0d6e857f23b87ca /experiments/conv_run.py
parenta631235d469c919cac88c58c2b83e04c1834b03e (diff)
audit: conservatively count predictor arithmetic
Diffstat (limited to 'experiments/conv_run.py')
-rw-r--r--experiments/conv_run.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/experiments/conv_run.py b/experiments/conv_run.py
index 2e2787b..c25c48c 100644
--- a/experiments/conv_run.py
+++ b/experiments/conv_run.py
@@ -191,7 +191,11 @@ def work_report(net, mode, counters):
* net.mixed_elementwise_ops_per_example()
+ (counters["predictor_warmup_examples"]
+ counters["predictor_update_examples"])
- * net.predictor_elementwise_ops_per_example)
+ * net.predictor_elementwise_ops_per_example
+ + counters["traffic_calibration_examples"]
+ * net.traffic_calibration_elementwise_ops_per_example
+ + counters["traffic_audit_examples"]
+ * net.predictor_audit_elementwise_ops_per_example)
else:
elementwise_operations = 0
components = {
@@ -234,7 +238,8 @@ def work_report(net, mode, counters):
"equals one forward-weight MAC count; BP reverse is estimated as one "
"weight-gradient plus one activation-gradient convolution per forward "
"convolution; mixed-traffic/predictor elementwise arithmetic is reported "
- "separately and is not folded into MACs"),
+ "as a conservative operation estimate separately and is not folded "
+ "into MACs"),
}