Spaces:
Runtime error
Runtime error
Commit ·
3da3198
1
Parent(s): afef051
Head-level membrane v2 — decompose attention by individual heads
Browse filesThe big upgrade. Instead of tracking 438 layers, now decomposes
attention outputs into per-head activation norms. GPT-2 Large has
36 layers x 20 heads = 720 attention heads tracked individually.
Layer-level found 16.6% floor. Head-level should find the
per-input differentiation where real savings live.
App shows both granularities side-by-side.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- app.py +99 -42
- torch_membrane.py +288 -103
app.py
CHANGED
|
@@ -150,13 +150,16 @@ def run_analysis(prompt, max_tokens=30):
|
|
| 150 |
elapsed_ms = (time.monotonic() - start) * 1000
|
| 151 |
generated_text = TOKENIZER.decode(outputs[0], skip_special_tokens=True)
|
| 152 |
|
| 153 |
-
|
| 154 |
potential = MEMBRANE.get_condensation_potential()
|
| 155 |
|
|
|
|
|
|
|
|
|
|
| 156 |
log = MEMBRANE.to_access_log()
|
| 157 |
pred_result = PREDICTOR.score(log)
|
| 158 |
|
| 159 |
-
# Build comparison output
|
| 160 |
comparison = []
|
| 161 |
comparison.append("=" * 55)
|
| 162 |
comparison.append(" BASELINE vs CONDENSATE")
|
|
@@ -164,49 +167,103 @@ def run_analysis(prompt, max_tokens=30):
|
|
| 164 |
comparison.append(f"\n Generated: {generated_text}")
|
| 165 |
comparison.append(f" Time: {elapsed_ms:.0f}ms\n")
|
| 166 |
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
|
| 171 |
comparison.append(f" WITHOUT Condensate:")
|
| 172 |
-
comparison.append(f" All
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
comparison.append(f"
|
| 176 |
-
|
| 177 |
-
comparison.append(f"
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
comparison.append(f" Access events: {len(log)}")
|
| 189 |
|
| 190 |
-
# Build analysis output
|
| 191 |
analysis = []
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
return "\n".join(comparison), "\n".join(analysis)
|
| 212 |
|
|
@@ -298,8 +355,8 @@ with gr.Blocks(title="Condensate — Do More With Less") as demo:
|
|
| 298 |
Condensate uses a neural substrate with causal spike propagation
|
| 299 |
to learn memory access patterns and dynamically condense RAM usage.
|
| 300 |
|
| 301 |
-
**Live Model tab:** Runs
|
| 302 |
-
and shows which layers are HOT vs COLD for your input.
|
| 303 |
|
| 304 |
**Synthetic tab:** Runs the full 4-layer pipeline on configurable
|
| 305 |
simulated workloads (no GPU needed).
|
|
|
|
| 150 |
elapsed_ms = (time.monotonic() - start) * 1000
|
| 151 |
generated_text = TOKENIZER.decode(outputs[0], skip_special_tokens=True)
|
| 152 |
|
| 153 |
+
# Layer-level analysis
|
| 154 |
potential = MEMBRANE.get_condensation_potential()
|
| 155 |
|
| 156 |
+
# Head-level analysis
|
| 157 |
+
head_potential = MEMBRANE.get_head_condensation_potential()
|
| 158 |
+
|
| 159 |
log = MEMBRANE.to_access_log()
|
| 160 |
pred_result = PREDICTOR.score(log)
|
| 161 |
|
| 162 |
+
# Build comparison output — showing BOTH granularities
|
| 163 |
comparison = []
|
| 164 |
comparison.append("=" * 55)
|
| 165 |
comparison.append(" BASELINE vs CONDENSATE")
|
|
|
|
| 167 |
comparison.append(f"\n Generated: {generated_text}")
|
| 168 |
comparison.append(f" Time: {elapsed_ms:.0f}ms\n")
|
| 169 |
|
| 170 |
+
# Layer-level (the floor)
|
| 171 |
+
layer_baseline = potential['total_mb']
|
| 172 |
+
layer_saved_pct = potential['savings_pct']
|
| 173 |
|
| 174 |
comparison.append(f" WITHOUT Condensate:")
|
| 175 |
+
comparison.append(f" All params in RAM: {layer_baseline:.2f} MB\n")
|
| 176 |
+
|
| 177 |
+
comparison.append(f" ── Layer-Level (v1 floor) ──")
|
| 178 |
+
comparison.append(f" HOT layers: {potential['hot_layers']} "
|
| 179 |
+
f"COLD layers: {potential['cold_layers']}")
|
| 180 |
+
comparison.append(f" Savings: {potential['cold_mb']:.2f} MB ({layer_saved_pct:.1f}%)\n")
|
| 181 |
+
|
| 182 |
+
# Head-level (the real number)
|
| 183 |
+
if head_potential['total_heads'] > 0:
|
| 184 |
+
comparison.append(f" ── Head-Level (v2) ──")
|
| 185 |
+
comparison.append(f" HOT heads: {head_potential['hot_heads']} "
|
| 186 |
+
f"COLD heads: {head_potential['cold_heads']} "
|
| 187 |
+
f"(of {head_potential['total_heads']} total)")
|
| 188 |
+
comparison.append(f" Cold attention: {head_potential['attn_cold_mb']:.2f} MB")
|
| 189 |
+
comparison.append(f" Cold non-attention: {head_potential['non_attn_cold_mb']:.2f} MB")
|
| 190 |
+
comparison.append(f" Total cold: {head_potential['cold_mb']:.2f} MB\n")
|
| 191 |
+
|
| 192 |
+
comparison.append(f" ┌─────────────────────────────────────────┐")
|
| 193 |
+
comparison.append(f" │ HEAD-LEVEL RAM REDUCTION: │")
|
| 194 |
+
comparison.append(f" │ {head_potential['savings_pct']:.1f}% "
|
| 195 |
+
f"({head_potential['cold_mb']:.2f} MB saved)"
|
| 196 |
+
+ " " * max(0, 14 - len(f"{head_potential['savings_pct']:.1f}% ({head_potential['cold_mb']:.2f} MB saved)"))
|
| 197 |
+
+ "│")
|
| 198 |
+
comparison.append(f" │ {head_potential['total_mb']:.2f} MB → "
|
| 199 |
+
f"{head_potential['hot_mb']:.2f} MB"
|
| 200 |
+
+ " " * max(0, 19 - len(f"{head_potential['total_mb']:.2f} MB → {head_potential['hot_mb']:.2f} MB"))
|
| 201 |
+
+ "│")
|
| 202 |
+
comparison.append(f" │ Same output. Same quality. │")
|
| 203 |
+
comparison.append(f" └─────────────────────────────────────────┘\n")
|
| 204 |
+
|
| 205 |
+
comparison.append(f" Layer-level floor: {layer_saved_pct:.1f}%")
|
| 206 |
+
comparison.append(f" Head-level actual: {head_potential['savings_pct']:.1f}%")
|
| 207 |
+
else:
|
| 208 |
+
comparison.append(f" ┌─────────────────────────────────────┐")
|
| 209 |
+
comparison.append(f" │ RAM REDUCTION: {layer_saved_pct:.1f}% │")
|
| 210 |
+
comparison.append(f" │ (Layer-level only — no heads found)│")
|
| 211 |
+
comparison.append(f" └───────────────���─────────────────────┘\n")
|
| 212 |
+
|
| 213 |
+
comparison.append(f"\n Prediction accuracy: {pred_result['accuracy']}%")
|
| 214 |
comparison.append(f" Access events: {len(log)}")
|
| 215 |
|
| 216 |
+
# Build analysis output — head-level detail
|
| 217 |
analysis = []
|
| 218 |
+
|
| 219 |
+
head_map = MEMBRANE.get_head_map()
|
| 220 |
+
cold_heads = MEMBRANE.get_cold_heads()
|
| 221 |
+
hot_heads = [h for h in head_map if h['temperature'] == 'HOT']
|
| 222 |
+
|
| 223 |
+
if head_map:
|
| 224 |
+
analysis.append("=" * 55)
|
| 225 |
+
analysis.append(" HEAD-LEVEL ACTIVATION MAP")
|
| 226 |
+
analysis.append("=" * 55)
|
| 227 |
+
analysis.append(f"\n {head_potential['total_heads']} heads tracked")
|
| 228 |
+
analysis.append(f" {head_potential['hot_heads']} HOT / "
|
| 229 |
+
f"{head_potential['cold_heads']} COLD\n")
|
| 230 |
+
|
| 231 |
+
# Show coldest heads
|
| 232 |
+
if cold_heads:
|
| 233 |
+
analysis.append(f" COLDEST HEADS (condensable):")
|
| 234 |
+
analysis.append(f" {'Head':<35} {'AvgAct':>10} {'MB':>6}")
|
| 235 |
+
analysis.append(f" {'-'*35} {'-'*10} {'-'*6}")
|
| 236 |
+
for h in cold_heads[:20]:
|
| 237 |
+
name = h['key'] if len(h['key']) <= 35 else "..." + h['key'][-32:]
|
| 238 |
+
analysis.append(f" {name:<35} {h['avg_activation']:>10.4f} "
|
| 239 |
+
f"{h['param_mb']:>6.4f}")
|
| 240 |
+
if len(cold_heads) > 20:
|
| 241 |
+
analysis.append(f" ... and {len(cold_heads) - 20} more cold heads")
|
| 242 |
+
|
| 243 |
+
# Show hottest for comparison
|
| 244 |
+
if hot_heads:
|
| 245 |
+
analysis.append(f"\n HOTTEST HEADS (must stay in RAM):")
|
| 246 |
+
analysis.append(f" {'Head':<35} {'AvgAct':>10} {'MB':>6}")
|
| 247 |
+
analysis.append(f" {'-'*35} {'-'*10} {'-'*6}")
|
| 248 |
+
for h in hot_heads[:10]:
|
| 249 |
+
name = h['key'] if len(h['key']) <= 35 else "..." + h['key'][-32:]
|
| 250 |
+
analysis.append(f" {name:<35} {h['avg_activation']:>10.4f} "
|
| 251 |
+
f"{h['param_mb']:>6.4f}")
|
| 252 |
+
else:
|
| 253 |
+
# Fall back to layer-level
|
| 254 |
+
analysis.append("=" * 55)
|
| 255 |
+
analysis.append(" LAYER ACTIVATION MAP")
|
| 256 |
+
analysis.append("=" * 55)
|
| 257 |
+
activation_map = MEMBRANE.get_activation_map()
|
| 258 |
+
analysis.append(f"\n {'Layer':<35} {'Fwd':>4} {'Activation':>10} {'MB':>6} {'Tier':>5}")
|
| 259 |
+
analysis.append(f" {'-'*35} {'-'*4} {'-'*10} {'-'*6} {'-'*5}")
|
| 260 |
+
for layer in activation_map[:40]:
|
| 261 |
+
name = layer['name'] if len(layer['name']) <= 35 else "..." + layer['name'][-32:]
|
| 262 |
+
attn = " [A]" if layer['is_attention'] else ""
|
| 263 |
+
analysis.append(f" {name:<35} {layer['forward_count']:>4} "
|
| 264 |
+
f"{layer['avg_activation']:>10.3f} "
|
| 265 |
+
f"{layer['param_mb']:>6.3f} "
|
| 266 |
+
f"{layer['temperature']:>5}{attn}")
|
| 267 |
|
| 268 |
return "\n".join(comparison), "\n".join(analysis)
|
| 269 |
|
|
|
|
| 355 |
Condensate uses a neural substrate with causal spike propagation
|
| 356 |
to learn memory access patterns and dynamically condense RAM usage.
|
| 357 |
|
| 358 |
+
**Live Model tab:** Runs GPT-2 Large (774M params) on ZeroGPU
|
| 359 |
+
and shows which layers AND attention heads are HOT vs COLD for your input.
|
| 360 |
|
| 361 |
**Synthetic tab:** Runs the full 4-layer pipeline on configurable
|
| 362 |
simulated workloads (no GPU needed).
|
torch_membrane.py
CHANGED
|
@@ -1,27 +1,26 @@
|
|
| 1 |
"""
|
| 2 |
-
Condensate: PyTorch Membrane
|
| 3 |
|
| 4 |
-
Hooks into nn.Module forward passes to track
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
model inference.
|
| 8 |
|
| 9 |
-
|
|
|
|
|
|
|
| 10 |
|
| 11 |
Usage:
|
| 12 |
from torch_membrane import TorchMembrane
|
| 13 |
|
| 14 |
-
model = AutoModelForCausalLM.from_pretrained("gpt2")
|
| 15 |
membrane = TorchMembrane(model)
|
| 16 |
|
| 17 |
-
# Run inference — membrane records everything
|
| 18 |
output = model.generate(input_ids)
|
| 19 |
|
| 20 |
-
#
|
| 21 |
-
membrane.
|
| 22 |
-
|
| 23 |
-
#
|
| 24 |
-
log = membrane.to_access_log()
|
| 25 |
"""
|
| 26 |
|
| 27 |
import time
|
|
@@ -29,12 +28,44 @@ import numpy as np
|
|
| 29 |
from collections import defaultdict
|
| 30 |
|
| 31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
class LayerActivation:
|
| 33 |
"""Records activation statistics for a single layer."""
|
| 34 |
|
| 35 |
__slots__ = ['name', 'forward_count', 'total_activation',
|
| 36 |
'max_activation', 'output_norms', 'timestamps_ns',
|
| 37 |
-
'param_bytes', 'is_attention', '
|
|
|
|
| 38 |
|
| 39 |
def __init__(self, name, param_bytes=0, is_attention=False, num_heads=0):
|
| 40 |
self.name = name
|
|
@@ -45,32 +76,46 @@ class LayerActivation:
|
|
| 45 |
self.timestamps_ns = []
|
| 46 |
self.param_bytes = param_bytes
|
| 47 |
self.is_attention = is_attention
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
|
| 52 |
class TorchMembrane:
|
| 53 |
-
"""Hooks into a PyTorch model to track layer activations.
|
| 54 |
|
| 55 |
-
|
| 56 |
-
-
|
| 57 |
-
-
|
| 58 |
-
|
| 59 |
-
- Per-head activation for attention layers
|
| 60 |
"""
|
| 61 |
|
| 62 |
def __init__(self, model, activation_threshold=0.01):
|
| 63 |
-
"""
|
| 64 |
-
Args:
|
| 65 |
-
model: nn.Module (typically a HuggingFace model)
|
| 66 |
-
activation_threshold: minimum output norm to count as "active"
|
| 67 |
-
"""
|
| 68 |
self.model = model
|
| 69 |
self.activation_threshold = activation_threshold
|
| 70 |
-
self.layers = {}
|
|
|
|
| 71 |
self._hooks = []
|
| 72 |
self._start_time = time.monotonic_ns()
|
| 73 |
-
self._access_log = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
|
| 75 |
self._install_hooks()
|
| 76 |
|
|
@@ -80,17 +125,33 @@ class TorchMembrane:
|
|
| 80 |
|
| 81 |
for name, module in self.model.named_modules():
|
| 82 |
if name == '':
|
| 83 |
-
continue
|
| 84 |
|
| 85 |
-
# Count parameters
|
| 86 |
param_bytes = sum(p.numel() * p.element_size()
|
| 87 |
for p in module.parameters(recurse=False))
|
| 88 |
|
| 89 |
# Detect attention layers
|
| 90 |
is_attention = any(kw in name.lower()
|
| 91 |
for kw in ['attn', 'attention', 'self_attn'])
|
| 92 |
-
|
| 93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
|
| 95 |
layer_info = LayerActivation(
|
| 96 |
name=name,
|
|
@@ -100,14 +161,13 @@ class TorchMembrane:
|
|
| 100 |
)
|
| 101 |
self.layers[name] = layer_info
|
| 102 |
|
| 103 |
-
# Install hook
|
| 104 |
hook = module.register_forward_hook(
|
| 105 |
self._make_hook(name, layer_info)
|
| 106 |
)
|
| 107 |
self._hooks.append(hook)
|
| 108 |
|
| 109 |
def _make_hook(self, name, layer_info):
|
| 110 |
-
"""Create a forward hook
|
| 111 |
import torch
|
| 112 |
|
| 113 |
def hook_fn(module, input, output):
|
|
@@ -115,17 +175,17 @@ class TorchMembrane:
|
|
| 115 |
layer_info.forward_count += 1
|
| 116 |
layer_info.timestamps_ns.append(ts)
|
| 117 |
|
| 118 |
-
# Compute output
|
|
|
|
| 119 |
if isinstance(output, torch.Tensor):
|
| 120 |
-
|
| 121 |
-
norm = output.float().norm().item()
|
| 122 |
elif isinstance(output, tuple) and len(output) > 0:
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
norm =
|
| 129 |
else:
|
| 130 |
norm = 0.0
|
| 131 |
|
|
@@ -133,47 +193,71 @@ class TorchMembrane:
|
|
| 133 |
layer_info.total_activation += norm
|
| 134 |
layer_info.max_activation = max(layer_info.max_activation, norm)
|
| 135 |
|
| 136 |
-
# Record
|
| 137 |
-
self._access_log.append((
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
if layer_info.is_attention and isinstance(output, tuple):
|
| 143 |
-
# Many attention implementations return (attn_output, attn_weights)
|
| 144 |
-
if len(output) >= 2 and output[1] is not None:
|
| 145 |
-
attn_weights = output[1]
|
| 146 |
-
if isinstance(attn_weights, torch.Tensor):
|
| 147 |
-
with torch.no_grad():
|
| 148 |
-
# attn_weights shape: (batch, num_heads, seq, seq)
|
| 149 |
-
if attn_weights.dim() >= 2:
|
| 150 |
-
num_heads = min(attn_weights.shape[1]
|
| 151 |
-
if attn_weights.dim() >= 3
|
| 152 |
-
else attn_weights.shape[0],
|
| 153 |
-
len(layer_info.head_activations)
|
| 154 |
-
if layer_info.head_activations else 999)
|
| 155 |
-
if num_heads > 0 and not layer_info.head_activations:
|
| 156 |
-
layer_info.head_activations = [0.0] * num_heads
|
| 157 |
-
for h in range(min(num_heads, len(layer_info.head_activations))):
|
| 158 |
-
if attn_weights.dim() >= 3:
|
| 159 |
-
head_norm = attn_weights[:, h].float().norm().item()
|
| 160 |
-
else:
|
| 161 |
-
head_norm = attn_weights[h].float().norm().item()
|
| 162 |
-
layer_info.head_activations[h] += head_norm
|
| 163 |
|
| 164 |
return hook_fn
|
| 165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
def reset(self):
|
| 167 |
"""Clear all recorded activations."""
|
| 168 |
self._start_time = time.monotonic_ns()
|
| 169 |
self._access_log.clear()
|
| 170 |
for layer in self.layers.values():
|
| 171 |
-
layer.
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
layer.output_norms.clear()
|
| 175 |
-
layer.timestamps_ns.clear()
|
| 176 |
-
layer.head_activations = [0.0] * len(layer.head_activations)
|
| 177 |
|
| 178 |
def remove_hooks(self):
|
| 179 |
"""Remove all forward hooks."""
|
|
@@ -185,14 +269,15 @@ class TorchMembrane:
|
|
| 185 |
"""Return access log in Membrane-compatible format."""
|
| 186 |
return self._access_log
|
| 187 |
|
|
|
|
|
|
|
| 188 |
def get_activation_map(self):
|
| 189 |
"""Return layer activation summary."""
|
| 190 |
layers = []
|
| 191 |
for name, info in self.layers.items():
|
| 192 |
if info.forward_count == 0:
|
| 193 |
continue
|
| 194 |
-
avg_norm =
|
| 195 |
-
if info.forward_count > 0 else 0)
|
| 196 |
layers.append({
|
| 197 |
"name": name,
|
| 198 |
"forward_count": info.forward_count,
|
|
@@ -201,32 +286,26 @@ class TorchMembrane:
|
|
| 201 |
"param_bytes": info.param_bytes,
|
| 202 |
"param_mb": round(info.param_bytes / (1024 * 1024), 3),
|
| 203 |
"is_attention": info.is_attention,
|
|
|
|
| 204 |
"temperature": "HOT" if avg_norm > self.activation_threshold else "COLD",
|
| 205 |
-
"head_activations": info.head_activations,
|
| 206 |
})
|
| 207 |
return sorted(layers, key=lambda x: -x["avg_activation"])
|
| 208 |
|
| 209 |
def get_cold_layers(self, percentile=25):
|
| 210 |
-
"""Return layers below the activation percentile — candidates for condensation."""
|
| 211 |
activation_map = self.get_activation_map()
|
| 212 |
if not activation_map:
|
| 213 |
return []
|
| 214 |
-
|
| 215 |
activations = [l["avg_activation"] for l in activation_map]
|
| 216 |
-
threshold = np.percentile(activations, percentile)
|
| 217 |
-
|
| 218 |
return [l for l in activation_map if l["avg_activation"] <= threshold]
|
| 219 |
|
| 220 |
def get_condensation_potential(self):
|
| 221 |
-
"""Calculate how much RAM could be saved by condensing cold layers."""
|
| 222 |
activation_map = self.get_activation_map()
|
| 223 |
if not activation_map:
|
| 224 |
return {"total_mb": 0, "cold_mb": 0, "savings_pct": 0}
|
| 225 |
-
|
| 226 |
total_bytes = sum(l["param_bytes"] for l in activation_map)
|
| 227 |
cold_layers = self.get_cold_layers()
|
| 228 |
cold_bytes = sum(l["param_bytes"] for l in cold_layers)
|
| 229 |
-
|
| 230 |
return {
|
| 231 |
"total_mb": round(total_bytes / (1024 * 1024), 2),
|
| 232 |
"hot_mb": round((total_bytes - cold_bytes) / (1024 * 1024), 2),
|
|
@@ -237,35 +316,141 @@ class TorchMembrane:
|
|
| 237 |
"hot_layers": len(activation_map) - len(cold_layers),
|
| 238 |
}
|
| 239 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 240 |
def print_activation_map(self, top_n=30):
|
| 241 |
-
"""Print activation summary."""
|
| 242 |
activation_map = self.get_activation_map()
|
| 243 |
potential = self.get_condensation_potential()
|
| 244 |
|
| 245 |
print(f"\n{'='*70}")
|
| 246 |
-
print(f" CONDENSATE —
|
| 247 |
print(f"{'='*70}")
|
| 248 |
-
print(f" Total layers
|
| 249 |
-
print(f" HOT
|
| 250 |
-
|
| 251 |
-
print(f"
|
| 252 |
-
f"({potential['cold_mb']:.2f} MB)")
|
| 253 |
-
print(f" Potential savings: {potential['savings_pct']:.1f}%")
|
| 254 |
|
| 255 |
print(f"\n {'Layer':<40} {'Fwd':>4} {'AvgAct':>8} {'MB':>6} {'Tier':>5}")
|
| 256 |
print(f" {'-'*40} {'-'*4} {'-'*8} {'-'*6} {'-'*5}")
|
| 257 |
|
| 258 |
for layer in activation_map[:top_n]:
|
| 259 |
-
name = layer['name']
|
| 260 |
-
if
|
| 261 |
-
name = "..." + name[-37:]
|
| 262 |
-
tier = layer['temperature']
|
| 263 |
-
attn_marker = " [A]" if layer['is_attention'] else ""
|
| 264 |
print(f" {name:<40} {layer['forward_count']:>4} "
|
| 265 |
f"{layer['avg_activation']:>8.3f} "
|
| 266 |
-
f"{layer['param_mb']:>6.3f} {
|
|
|
|
|
|
|
| 267 |
|
| 268 |
-
|
| 269 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 270 |
|
| 271 |
print(f"\n{'='*70}\n")
|
|
|
|
| 1 |
"""
|
| 2 |
+
Condensate: PyTorch Membrane (v2 — Head-Level Granularity)
|
| 3 |
|
| 4 |
+
Hooks into nn.Module forward passes to track activation at TWO levels:
|
| 5 |
+
- Layer level: which modules fire, how strongly
|
| 6 |
+
- Head level: within attention layers, which individual heads contribute
|
|
|
|
| 7 |
|
| 8 |
+
This is the key upgrade. Layer-level tracking found a 16.6% floor.
|
| 9 |
+
Head-level tracking sees inside that floor — different inputs activate
|
| 10 |
+
different heads within the same layer. That's where 50%+ savings live.
|
| 11 |
|
| 12 |
Usage:
|
| 13 |
from torch_membrane import TorchMembrane
|
| 14 |
|
| 15 |
+
model = AutoModelForCausalLM.from_pretrained("gpt2-large")
|
| 16 |
membrane = TorchMembrane(model)
|
| 17 |
|
|
|
|
| 18 |
output = model.generate(input_ids)
|
| 19 |
|
| 20 |
+
membrane.print_activation_map() # layer-level summary
|
| 21 |
+
membrane.print_head_map() # head-level detail
|
| 22 |
+
membrane.get_condensation_potential() # layer-level savings
|
| 23 |
+
membrane.get_head_condensation_potential() # head-level savings
|
|
|
|
| 24 |
"""
|
| 25 |
|
| 26 |
import time
|
|
|
|
| 28 |
from collections import defaultdict
|
| 29 |
|
| 30 |
|
| 31 |
+
class HeadActivation:
|
| 32 |
+
"""Tracks activation for a single attention head."""
|
| 33 |
+
|
| 34 |
+
__slots__ = ['layer_name', 'head_idx', 'activation_sum', 'activation_max',
|
| 35 |
+
'forward_count', 'norms']
|
| 36 |
+
|
| 37 |
+
def __init__(self, layer_name, head_idx):
|
| 38 |
+
self.layer_name = layer_name
|
| 39 |
+
self.head_idx = head_idx
|
| 40 |
+
self.activation_sum = 0.0
|
| 41 |
+
self.activation_max = 0.0
|
| 42 |
+
self.forward_count = 0
|
| 43 |
+
self.norms = []
|
| 44 |
+
|
| 45 |
+
def record(self, norm):
|
| 46 |
+
self.forward_count += 1
|
| 47 |
+
self.activation_sum += norm
|
| 48 |
+
self.activation_max = max(self.activation_max, norm)
|
| 49 |
+
self.norms.append(norm)
|
| 50 |
+
|
| 51 |
+
@property
|
| 52 |
+
def avg_activation(self):
|
| 53 |
+
return self.activation_sum / self.forward_count if self.forward_count > 0 else 0.0
|
| 54 |
+
|
| 55 |
+
def reset(self):
|
| 56 |
+
self.activation_sum = 0.0
|
| 57 |
+
self.activation_max = 0.0
|
| 58 |
+
self.forward_count = 0
|
| 59 |
+
self.norms.clear()
|
| 60 |
+
|
| 61 |
+
|
| 62 |
class LayerActivation:
|
| 63 |
"""Records activation statistics for a single layer."""
|
| 64 |
|
| 65 |
__slots__ = ['name', 'forward_count', 'total_activation',
|
| 66 |
'max_activation', 'output_norms', 'timestamps_ns',
|
| 67 |
+
'param_bytes', 'is_attention', 'num_heads',
|
| 68 |
+
'per_head_param_bytes']
|
| 69 |
|
| 70 |
def __init__(self, name, param_bytes=0, is_attention=False, num_heads=0):
|
| 71 |
self.name = name
|
|
|
|
| 76 |
self.timestamps_ns = []
|
| 77 |
self.param_bytes = param_bytes
|
| 78 |
self.is_attention = is_attention
|
| 79 |
+
self.num_heads = num_heads
|
| 80 |
+
# For attention layers, divide params evenly across heads
|
| 81 |
+
self.per_head_param_bytes = (param_bytes // num_heads) if num_heads > 0 else 0
|
| 82 |
+
|
| 83 |
+
def reset(self):
|
| 84 |
+
self.forward_count = 0
|
| 85 |
+
self.total_activation = 0.0
|
| 86 |
+
self.max_activation = 0.0
|
| 87 |
+
self.output_norms.clear()
|
| 88 |
+
self.timestamps_ns.clear()
|
| 89 |
|
| 90 |
|
| 91 |
class TorchMembrane:
|
| 92 |
+
"""Hooks into a PyTorch model to track layer AND head activations.
|
| 93 |
|
| 94 |
+
Two levels of granularity:
|
| 95 |
+
- Layer level: every nn.Module tracked by output norm
|
| 96 |
+
- Head level: attention layers decomposed into individual heads
|
| 97 |
+
by analyzing the output tensor shape and computing per-head norms
|
|
|
|
| 98 |
"""
|
| 99 |
|
| 100 |
def __init__(self, model, activation_threshold=0.01):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 101 |
self.model = model
|
| 102 |
self.activation_threshold = activation_threshold
|
| 103 |
+
self.layers = {} # name → LayerActivation
|
| 104 |
+
self.heads = {} # "layer_name.head_N" → HeadActivation
|
| 105 |
self._hooks = []
|
| 106 |
self._start_time = time.monotonic_ns()
|
| 107 |
+
self._access_log = []
|
| 108 |
+
|
| 109 |
+
# Detect model config for head count
|
| 110 |
+
config = getattr(model, 'config', None)
|
| 111 |
+
self._default_num_heads = getattr(config, 'n_head',
|
| 112 |
+
getattr(config, 'num_attention_heads', 0))
|
| 113 |
+
self._head_dim = 0
|
| 114 |
+
if config:
|
| 115 |
+
hidden = getattr(config, 'n_embd',
|
| 116 |
+
getattr(config, 'hidden_size', 0))
|
| 117 |
+
if self._default_num_heads > 0 and hidden > 0:
|
| 118 |
+
self._head_dim = hidden // self._default_num_heads
|
| 119 |
|
| 120 |
self._install_hooks()
|
| 121 |
|
|
|
|
| 125 |
|
| 126 |
for name, module in self.model.named_modules():
|
| 127 |
if name == '':
|
| 128 |
+
continue
|
| 129 |
|
|
|
|
| 130 |
param_bytes = sum(p.numel() * p.element_size()
|
| 131 |
for p in module.parameters(recurse=False))
|
| 132 |
|
| 133 |
# Detect attention layers
|
| 134 |
is_attention = any(kw in name.lower()
|
| 135 |
for kw in ['attn', 'attention', 'self_attn'])
|
| 136 |
+
|
| 137 |
+
# Detect attention OUTPUT projection specifically — this is where
|
| 138 |
+
# we can decompose by head from the pre-projection tensor
|
| 139 |
+
is_attn_output = is_attention and any(
|
| 140 |
+
kw in name.lower()
|
| 141 |
+
for kw in ['c_proj', 'out_proj', 'o_proj', 'dense']
|
| 142 |
+
)
|
| 143 |
+
|
| 144 |
+
num_heads = 0
|
| 145 |
+
if is_attention:
|
| 146 |
+
num_heads = getattr(module, 'num_heads',
|
| 147 |
+
getattr(module, 'num_attention_heads',
|
| 148 |
+
self._default_num_heads))
|
| 149 |
+
|
| 150 |
+
# Register per-head trackers
|
| 151 |
+
if num_heads > 0:
|
| 152 |
+
for h in range(num_heads):
|
| 153 |
+
head_key = f"{name}.head_{h}"
|
| 154 |
+
self.heads[head_key] = HeadActivation(name, h)
|
| 155 |
|
| 156 |
layer_info = LayerActivation(
|
| 157 |
name=name,
|
|
|
|
| 161 |
)
|
| 162 |
self.layers[name] = layer_info
|
| 163 |
|
|
|
|
| 164 |
hook = module.register_forward_hook(
|
| 165 |
self._make_hook(name, layer_info)
|
| 166 |
)
|
| 167 |
self._hooks.append(hook)
|
| 168 |
|
| 169 |
def _make_hook(self, name, layer_info):
|
| 170 |
+
"""Create a forward hook that tracks both layer and head activation."""
|
| 171 |
import torch
|
| 172 |
|
| 173 |
def hook_fn(module, input, output):
|
|
|
|
| 175 |
layer_info.forward_count += 1
|
| 176 |
layer_info.timestamps_ns.append(ts)
|
| 177 |
|
| 178 |
+
# Compute layer-level output norm
|
| 179 |
+
out_tensor = None
|
| 180 |
if isinstance(output, torch.Tensor):
|
| 181 |
+
out_tensor = output
|
|
|
|
| 182 |
elif isinstance(output, tuple) and len(output) > 0:
|
| 183 |
+
if isinstance(output[0], torch.Tensor):
|
| 184 |
+
out_tensor = output[0]
|
| 185 |
+
|
| 186 |
+
if out_tensor is not None:
|
| 187 |
+
with torch.no_grad():
|
| 188 |
+
norm = out_tensor.float().norm().item()
|
| 189 |
else:
|
| 190 |
norm = 0.0
|
| 191 |
|
|
|
|
| 193 |
layer_info.total_activation += norm
|
| 194 |
layer_info.max_activation = max(layer_info.max_activation, norm)
|
| 195 |
|
| 196 |
+
# Record layer access
|
| 197 |
+
self._access_log.append((ts, "READ", name, layer_info.param_bytes))
|
| 198 |
+
|
| 199 |
+
# Head-level decomposition for attention layers
|
| 200 |
+
if layer_info.is_attention and layer_info.num_heads > 0 and out_tensor is not None:
|
| 201 |
+
self._decompose_heads(name, layer_info, out_tensor, ts)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
|
| 203 |
return hook_fn
|
| 204 |
|
| 205 |
+
def _decompose_heads(self, name, layer_info, output_tensor, ts):
|
| 206 |
+
"""Decompose attention output into per-head activation norms.
|
| 207 |
+
|
| 208 |
+
For GPT-2 style models, the attention output is (batch, seq, hidden).
|
| 209 |
+
hidden = num_heads * head_dim. We reshape and compute per-head norms.
|
| 210 |
+
"""
|
| 211 |
+
import torch
|
| 212 |
+
|
| 213 |
+
num_heads = layer_info.num_heads
|
| 214 |
+
if num_heads <= 0:
|
| 215 |
+
return
|
| 216 |
+
|
| 217 |
+
try:
|
| 218 |
+
with torch.no_grad():
|
| 219 |
+
shape = output_tensor.shape
|
| 220 |
+
# Expected: (batch, seq_len, hidden_size) or (batch, seq_len, num_heads * head_dim)
|
| 221 |
+
if len(shape) < 2:
|
| 222 |
+
return
|
| 223 |
+
|
| 224 |
+
hidden = shape[-1]
|
| 225 |
+
|
| 226 |
+
# Only decompose if hidden is divisible by num_heads
|
| 227 |
+
if hidden % num_heads != 0:
|
| 228 |
+
return
|
| 229 |
+
|
| 230 |
+
head_dim = hidden // num_heads
|
| 231 |
+
|
| 232 |
+
# Reshape to (batch, seq_len, num_heads, head_dim)
|
| 233 |
+
reshaped = output_tensor.view(*shape[:-1], num_heads, head_dim)
|
| 234 |
+
|
| 235 |
+
# Compute per-head norm: norm across (batch, seq_len, head_dim)
|
| 236 |
+
for h in range(num_heads):
|
| 237 |
+
head_key = f"{name}.head_{h}"
|
| 238 |
+
head_tracker = self.heads.get(head_key)
|
| 239 |
+
if head_tracker:
|
| 240 |
+
head_norm = reshaped[..., h, :].float().norm().item()
|
| 241 |
+
head_tracker.record(head_norm)
|
| 242 |
+
|
| 243 |
+
# Record head-level access
|
| 244 |
+
self._access_log.append((
|
| 245 |
+
ts, "READ", head_key,
|
| 246 |
+
layer_info.per_head_param_bytes
|
| 247 |
+
))
|
| 248 |
+
|
| 249 |
+
except (RuntimeError, ValueError):
|
| 250 |
+
# Shape mismatch — skip head decomposition for this layer
|
| 251 |
+
pass
|
| 252 |
+
|
| 253 |
def reset(self):
|
| 254 |
"""Clear all recorded activations."""
|
| 255 |
self._start_time = time.monotonic_ns()
|
| 256 |
self._access_log.clear()
|
| 257 |
for layer in self.layers.values():
|
| 258 |
+
layer.reset()
|
| 259 |
+
for head in self.heads.values():
|
| 260 |
+
head.reset()
|
|
|
|
|
|
|
|
|
|
| 261 |
|
| 262 |
def remove_hooks(self):
|
| 263 |
"""Remove all forward hooks."""
|
|
|
|
| 269 |
"""Return access log in Membrane-compatible format."""
|
| 270 |
return self._access_log
|
| 271 |
|
| 272 |
+
# --- Layer-level analysis (same as v1) ---
|
| 273 |
+
|
| 274 |
def get_activation_map(self):
|
| 275 |
"""Return layer activation summary."""
|
| 276 |
layers = []
|
| 277 |
for name, info in self.layers.items():
|
| 278 |
if info.forward_count == 0:
|
| 279 |
continue
|
| 280 |
+
avg_norm = info.total_activation / info.forward_count
|
|
|
|
| 281 |
layers.append({
|
| 282 |
"name": name,
|
| 283 |
"forward_count": info.forward_count,
|
|
|
|
| 286 |
"param_bytes": info.param_bytes,
|
| 287 |
"param_mb": round(info.param_bytes / (1024 * 1024), 3),
|
| 288 |
"is_attention": info.is_attention,
|
| 289 |
+
"num_heads": info.num_heads,
|
| 290 |
"temperature": "HOT" if avg_norm > self.activation_threshold else "COLD",
|
|
|
|
| 291 |
})
|
| 292 |
return sorted(layers, key=lambda x: -x["avg_activation"])
|
| 293 |
|
| 294 |
def get_cold_layers(self, percentile=25):
|
|
|
|
| 295 |
activation_map = self.get_activation_map()
|
| 296 |
if not activation_map:
|
| 297 |
return []
|
|
|
|
| 298 |
activations = [l["avg_activation"] for l in activation_map]
|
| 299 |
+
threshold = np.percentile(activations, percentile)
|
|
|
|
| 300 |
return [l for l in activation_map if l["avg_activation"] <= threshold]
|
| 301 |
|
| 302 |
def get_condensation_potential(self):
|
|
|
|
| 303 |
activation_map = self.get_activation_map()
|
| 304 |
if not activation_map:
|
| 305 |
return {"total_mb": 0, "cold_mb": 0, "savings_pct": 0}
|
|
|
|
| 306 |
total_bytes = sum(l["param_bytes"] for l in activation_map)
|
| 307 |
cold_layers = self.get_cold_layers()
|
| 308 |
cold_bytes = sum(l["param_bytes"] for l in cold_layers)
|
|
|
|
| 309 |
return {
|
| 310 |
"total_mb": round(total_bytes / (1024 * 1024), 2),
|
| 311 |
"hot_mb": round((total_bytes - cold_bytes) / (1024 * 1024), 2),
|
|
|
|
| 316 |
"hot_layers": len(activation_map) - len(cold_layers),
|
| 317 |
}
|
| 318 |
|
| 319 |
+
# --- Head-level analysis (new in v2) ---
|
| 320 |
+
|
| 321 |
+
def get_head_map(self):
|
| 322 |
+
"""Return per-head activation summary for all attention layers."""
|
| 323 |
+
head_data = []
|
| 324 |
+
for key, head in self.heads.items():
|
| 325 |
+
if head.forward_count == 0:
|
| 326 |
+
continue
|
| 327 |
+
|
| 328 |
+
# Find the parent layer to get per-head param size
|
| 329 |
+
parent = self.layers.get(head.layer_name)
|
| 330 |
+
per_head_bytes = parent.per_head_param_bytes if parent else 0
|
| 331 |
+
|
| 332 |
+
head_data.append({
|
| 333 |
+
"key": key,
|
| 334 |
+
"layer": head.layer_name,
|
| 335 |
+
"head_idx": head.head_idx,
|
| 336 |
+
"forward_count": head.forward_count,
|
| 337 |
+
"avg_activation": round(head.avg_activation, 4),
|
| 338 |
+
"max_activation": round(head.activation_max, 4),
|
| 339 |
+
"param_bytes": per_head_bytes,
|
| 340 |
+
"param_mb": round(per_head_bytes / (1024 * 1024), 4),
|
| 341 |
+
"temperature": "HOT" if head.avg_activation > self.activation_threshold else "COLD",
|
| 342 |
+
})
|
| 343 |
+
return sorted(head_data, key=lambda x: -x["avg_activation"])
|
| 344 |
+
|
| 345 |
+
def get_cold_heads(self, percentile=25):
|
| 346 |
+
"""Return heads below the activation percentile."""
|
| 347 |
+
head_map = self.get_head_map()
|
| 348 |
+
if not head_map:
|
| 349 |
+
return []
|
| 350 |
+
activations = [h["avg_activation"] for h in head_map]
|
| 351 |
+
threshold = np.percentile(activations, percentile)
|
| 352 |
+
return [h for h in head_map if h["avg_activation"] <= threshold]
|
| 353 |
+
|
| 354 |
+
def get_head_condensation_potential(self):
|
| 355 |
+
"""Calculate RAM savings at head-level granularity."""
|
| 356 |
+
head_map = self.get_head_map()
|
| 357 |
+
if not head_map:
|
| 358 |
+
return {"total_mb": 0, "cold_mb": 0, "savings_pct": 0,
|
| 359 |
+
"total_heads": 0, "cold_heads": 0, "hot_heads": 0}
|
| 360 |
+
|
| 361 |
+
total_bytes = sum(h["param_bytes"] for h in head_map)
|
| 362 |
+
cold_heads = self.get_cold_heads()
|
| 363 |
+
cold_bytes = sum(h["param_bytes"] for h in cold_heads)
|
| 364 |
+
|
| 365 |
+
# Also get non-attention layer data for the full picture
|
| 366 |
+
non_attn_layers = [l for l in self.get_activation_map()
|
| 367 |
+
if not l["is_attention"]]
|
| 368 |
+
cold_non_attn = [l for l in non_attn_layers
|
| 369 |
+
if l["temperature"] == "COLD"]
|
| 370 |
+
non_attn_cold_bytes = sum(l["param_bytes"] for l in cold_non_attn)
|
| 371 |
+
non_attn_total_bytes = sum(l["param_bytes"] for l in non_attn_layers)
|
| 372 |
+
|
| 373 |
+
grand_total = total_bytes + non_attn_total_bytes
|
| 374 |
+
grand_cold = cold_bytes + non_attn_cold_bytes
|
| 375 |
+
|
| 376 |
+
return {
|
| 377 |
+
"attn_total_mb": round(total_bytes / (1024 * 1024), 2),
|
| 378 |
+
"attn_hot_mb": round((total_bytes - cold_bytes) / (1024 * 1024), 2),
|
| 379 |
+
"attn_cold_mb": round(cold_bytes / (1024 * 1024), 2),
|
| 380 |
+
"non_attn_total_mb": round(non_attn_total_bytes / (1024 * 1024), 2),
|
| 381 |
+
"non_attn_cold_mb": round(non_attn_cold_bytes / (1024 * 1024), 2),
|
| 382 |
+
"total_mb": round(grand_total / (1024 * 1024), 2),
|
| 383 |
+
"cold_mb": round(grand_cold / (1024 * 1024), 2),
|
| 384 |
+
"hot_mb": round((grand_total - grand_cold) / (1024 * 1024), 2),
|
| 385 |
+
"savings_pct": round(grand_cold / grand_total * 100, 1) if grand_total > 0 else 0,
|
| 386 |
+
"total_heads": len(head_map),
|
| 387 |
+
"cold_heads": len(cold_heads),
|
| 388 |
+
"hot_heads": len(head_map) - len(cold_heads),
|
| 389 |
+
"cold_non_attn_layers": len(cold_non_attn),
|
| 390 |
+
}
|
| 391 |
+
|
| 392 |
def print_activation_map(self, top_n=30):
|
| 393 |
+
"""Print layer-level activation summary."""
|
| 394 |
activation_map = self.get_activation_map()
|
| 395 |
potential = self.get_condensation_potential()
|
| 396 |
|
| 397 |
print(f"\n{'='*70}")
|
| 398 |
+
print(f" CONDENSATE — Layer Activation Map")
|
| 399 |
print(f"{'='*70}")
|
| 400 |
+
print(f" Total layers: {potential['total_layers']}")
|
| 401 |
+
print(f" HOT: {potential['hot_layers']} ({potential['hot_mb']:.2f} MB)")
|
| 402 |
+
print(f" COLD: {potential['cold_layers']} ({potential['cold_mb']:.2f} MB)")
|
| 403 |
+
print(f" Layer-level savings: {potential['savings_pct']:.1f}%")
|
|
|
|
|
|
|
| 404 |
|
| 405 |
print(f"\n {'Layer':<40} {'Fwd':>4} {'AvgAct':>8} {'MB':>6} {'Tier':>5}")
|
| 406 |
print(f" {'-'*40} {'-'*4} {'-'*8} {'-'*6} {'-'*5}")
|
| 407 |
|
| 408 |
for layer in activation_map[:top_n]:
|
| 409 |
+
name = layer['name'] if len(layer['name']) <= 40 else "..." + layer['name'][-37:]
|
| 410 |
+
attn = " [A]" if layer['is_attention'] else ""
|
|
|
|
|
|
|
|
|
|
| 411 |
print(f" {name:<40} {layer['forward_count']:>4} "
|
| 412 |
f"{layer['avg_activation']:>8.3f} "
|
| 413 |
+
f"{layer['param_mb']:>6.3f} {layer['temperature']:>5}{attn}")
|
| 414 |
+
|
| 415 |
+
print(f"\n{'='*70}\n")
|
| 416 |
|
| 417 |
+
def print_head_map(self, top_n=40):
|
| 418 |
+
"""Print head-level activation map."""
|
| 419 |
+
head_map = self.get_head_map()
|
| 420 |
+
head_potential = self.get_head_condensation_potential()
|
| 421 |
+
|
| 422 |
+
print(f"\n{'='*70}")
|
| 423 |
+
print(f" CONDENSATE — Head-Level Activation Map")
|
| 424 |
+
print(f"{'='*70}")
|
| 425 |
+
print(f" Total attention heads: {head_potential['total_heads']}")
|
| 426 |
+
print(f" HOT heads: {head_potential['hot_heads']}")
|
| 427 |
+
print(f" COLD heads: {head_potential['cold_heads']}")
|
| 428 |
+
print(f" Attention params: {head_potential['attn_total_mb']:.2f} MB "
|
| 429 |
+
f"(cold: {head_potential['attn_cold_mb']:.2f} MB)")
|
| 430 |
+
print(f" Non-attention cold: {head_potential['non_attn_cold_mb']:.2f} MB")
|
| 431 |
+
print(f" *** HEAD-LEVEL SAVINGS: {head_potential['savings_pct']:.1f}% "
|
| 432 |
+
f"({head_potential['cold_mb']:.2f} MB) ***")
|
| 433 |
+
|
| 434 |
+
# Show coldest heads
|
| 435 |
+
cold_heads = self.get_cold_heads()
|
| 436 |
+
if cold_heads:
|
| 437 |
+
print(f"\n Coldest heads (bottom 25%):")
|
| 438 |
+
print(f" {'Head':<40} {'Fwd':>4} {'AvgAct':>10} {'MB':>6}")
|
| 439 |
+
print(f" {'-'*40} {'-'*4} {'-'*10} {'-'*6}")
|
| 440 |
+
for h in cold_heads[:top_n]:
|
| 441 |
+
name = h['key'] if len(h['key']) <= 40 else "..." + h['key'][-37:]
|
| 442 |
+
print(f" {name:<40} {h['forward_count']:>4} "
|
| 443 |
+
f"{h['avg_activation']:>10.4f} {h['param_mb']:>6.4f}")
|
| 444 |
+
|
| 445 |
+
# Show hottest heads for comparison
|
| 446 |
+
hot_heads = [h for h in head_map if h['temperature'] == 'HOT']
|
| 447 |
+
if hot_heads:
|
| 448 |
+
print(f"\n Hottest heads (sample):")
|
| 449 |
+
print(f" {'Head':<40} {'Fwd':>4} {'AvgAct':>10} {'MB':>6}")
|
| 450 |
+
print(f" {'-'*40} {'-'*4} {'-'*10} {'-'*6}")
|
| 451 |
+
for h in hot_heads[:10]:
|
| 452 |
+
name = h['key'] if len(h['key']) <= 40 else "..." + h['key'][-37:]
|
| 453 |
+
print(f" {name:<40} {h['forward_count']:>4} "
|
| 454 |
+
f"{h['avg_activation']:>10.4f} {h['param_mb']:>6.4f}")
|
| 455 |
|
| 456 |
print(f"\n{'='*70}\n")
|