1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
|
"""Backpropagation-free simulator for the Dillavou two-edge circuit.
The circuit equations and standard/overclamping updates follow Appendix D/F
of Dillavou et al. (arXiv:2505.22887v2). Every adaptive operation is an
explicit NumPy local rule; this module intentionally has no autodiff path.
"""
from __future__ import annotations
from dataclasses import dataclass
from typing import Callable, Iterable, Optional
import numpy as np
Array = np.ndarray
@dataclass(frozen=True)
class Circuit:
high: float = 0.4351
low: float = 0.0181
conductance_per_gate: float = 8.5e-4
threshold_voltage: float = 0.7
fixed_conductance: float = 1.0 / 500.0
measured_learning_rate: float = 2040.0
integration_step_seconds: float = 2.0e-4
gate_minimum: float = 1.0
gate_maximum: float = 5.2
@dataclass(frozen=True)
class Task:
name: str
input_voltage: float
label_voltage: float
@dataclass(frozen=True)
class LocalAffineBias:
reference_gate: Array
bias_at_reference: Array
local_slopes: Array
def __post_init__(self) -> None:
for value in (
self.reference_gate, self.bias_at_reference, self.local_slopes
):
if np.asarray(value).shape != (2,):
raise ValueError("two-edge bias arrays must have shape (2,)")
def __call__(self, gates: Array, strength: float = 1.0) -> Array:
gates = np.asarray(gates, dtype=float)
if gates.shape != (2,):
raise ValueError("gates must have shape (2,)")
return strength * (
self.bias_at_reference
+ self.local_slopes * (gates - self.reference_gate)
)
@dataclass
class LocalPredictor:
"""Independent per-edge affine filters trained by normalized LMS."""
reference_gate: Array
feature_scale: Array
coefficients: Array
affine: bool
@classmethod
def zeros(
cls,
reference_gate: Array,
feature_scale: Array,
*,
affine: bool,
) -> "LocalPredictor":
width = 2 if affine else 1
return cls(
reference_gate=np.asarray(reference_gate, dtype=float).copy(),
feature_scale=np.asarray(feature_scale, dtype=float).copy(),
coefficients=np.zeros((2, width), dtype=float),
affine=affine,
)
def features(self, gates: Array) -> Array:
gates = np.asarray(gates, dtype=float)
if gates.shape != (2,):
raise ValueError("gates must have shape (2,)")
if not self.affine:
return np.ones((2, 1), dtype=float)
normalized = (gates - self.reference_gate) / self.feature_scale
return np.column_stack((np.ones(2, dtype=float), normalized))
def predict(self, gates: Array) -> Array:
return np.sum(self.coefficients * self.features(gates), axis=1)
def update(self, gates: Array, neutral_measurement: Array, rate: float) -> Array:
"""One local normalized-LMS update and its pre-update residual."""
neutral_measurement = np.asarray(neutral_measurement, dtype=float)
if neutral_measurement.shape != (2,):
raise ValueError("neutral measurement must have shape (2,)")
features = self.features(gates)
residual = neutral_measurement - np.sum(
self.coefficients * features, axis=1)
normalization = np.sum(features * features, axis=1, keepdims=True)
self.coefficients += (
rate * residual[:, None] * features / np.maximum(normalization, 1e-12)
)
return residual
def copy(self) -> "LocalPredictor":
return LocalPredictor(
reference_gate=self.reference_gate.copy(),
feature_scale=self.feature_scale.copy(),
coefficients=self.coefficients.copy(),
affine=self.affine,
)
def free_output(circuit: Circuit, gates: Array, input_voltage: float) -> float:
"""Appendix D, Eq. D13, with gates ordered (minus, plus)."""
gate_minus, gate_plus = np.asarray(gates, dtype=float)
scale = circuit.conductance_per_gate
numerator = (
input_voltage * circuit.fixed_conductance
+ scale * (
gate_plus * circuit.high
+ gate_minus * circuit.low
- (circuit.low + circuit.high) * circuit.threshold_voltage
)
)
denominator = (
circuit.fixed_conductance
+ scale * (
gate_plus + gate_minus - 2.0 * circuit.threshold_voltage
)
)
if denominator <= 0.0:
raise ValueError("nonpositive effective conductance")
return float(numerator / denominator)
def solution_line(circuit: Circuit, task: Task) -> tuple[float, float]:
"""Return slope/intercept of gate_plus versus gate_minus at zero error."""
label = task.label_voltage
scale = circuit.conductance_per_gate
denominator = scale * (circuit.high - label)
if denominator == 0.0:
raise ValueError("label coincides with high boundary")
slope = -(circuit.low - label) / (circuit.high - label)
intercept = -(
circuit.fixed_conductance * (task.input_voltage - label)
+ scale * circuit.threshold_voltage
* (2.0 * label - circuit.low - circuit.high)
) / denominator
return float(slope), float(intercept)
def joint_solution(circuit: Circuit, tasks: Iterable[Task]) -> Array:
tasks = tuple(tasks)
if len(tasks) != 2:
raise ValueError("joint_solution expects exactly two tasks")
slope_a, intercept_a = solution_line(circuit, tasks[0])
slope_b, intercept_b = solution_line(circuit, tasks[1])
if slope_a == slope_b:
raise ValueError("parallel solution lines have no unique joint solution")
gate_minus = (intercept_b - intercept_a) / (slope_a - slope_b)
return np.asarray(
(gate_minus, slope_a * gate_minus + intercept_a), dtype=float)
def voltage_drop_squares(circuit: Circuit, output: float) -> Array:
return np.asarray(
((output - circuit.low) ** 2, (circuit.high - output) ** 2),
dtype=float,
)
def standard_clean_rate(
circuit: Circuit, gates: Array, task: Task, nudging: float = 1.0
) -> tuple[Array, float, float]:
output_free = free_output(circuit, gates, task.input_voltage)
output_clamped = output_free + nudging * (
task.label_voltage - output_free)
rate = circuit.measured_learning_rate * (
voltage_drop_squares(circuit, output_free)
- voltage_drop_squares(circuit, output_clamped)
)
return rate, output_free, output_clamped
def overclamped_clean_rate(
circuit: Circuit,
gates: Array,
task: Task,
*,
nudging: float = 0.25,
clamp_magnitude: Optional[float] = None,
exact_target: bool = False,
) -> tuple[Array, float, float]:
"""Overclamping signal from Appendix F, Eq. F5 or its Eq. F6 limit."""
output_free = free_output(circuit, gates, task.input_voltage)
error = task.label_voltage - output_free
magnitude = circuit.high if clamp_magnitude is None else clamp_magnitude
if exact_target:
output_clamped = output_free + nudging * (
magnitude * np.sign(error) - output_free
)
else:
output_clamped = output_free + nudging * magnitude * np.sign(error)
rate = circuit.measured_learning_rate * (
voltage_drop_squares(circuit, output_free)
- voltage_drop_squares(circuit, output_clamped)
)
return rate, output_free, output_clamped
def calibrate_predictor(
predictor: LocalPredictor,
states: Array,
measurement: Callable[[Array], Array],
*,
epochs: int,
learning_rate: float,
) -> int:
"""Sequential local LMS calibration; returns neutral observation count."""
states = np.asarray(states, dtype=float)
if states.ndim != 2 or states.shape[1] != 2:
raise ValueError("calibration states must have shape (observations, 2)")
if epochs < 1:
raise ValueError("epochs must be positive")
count = 0
for _ in range(epochs):
for gates in states:
predictor.update(gates, measurement(gates), learning_rate)
count += 1
return count
def local_replay_update(
predictor: LocalPredictor,
gates: Array,
teaching_measurement: Array,
eligibility: Array,
learning_rate: float,
) -> Array:
"""The complete stored-tuple SDIL update, independent of any task/model."""
residual = np.asarray(teaching_measurement) - predictor.predict(gates)
return learning_rate * residual * np.asarray(eligibility)
def task_errors(circuit: Circuit, gates: Array, tasks: Iterable[Task]) -> Array:
return np.asarray([
(task.label_voltage - free_output(
circuit, gates, task.input_voltage)) ** 2
for task in tasks
], dtype=float)
def simulate_alternating_tasks(
circuit: Circuit,
tasks: Iterable[Task],
bias_field: LocalAffineBias,
*,
method: str,
period_seconds: float,
cycles: int,
initial_gates: Array,
bias_strength: float = 1.0,
predictor: Optional[LocalPredictor] = None,
online_predictor_rate: float = 0.05,
noise_standard_deviation: Optional[Array] = None,
seed: int = 0,
summary_cycles: int = 20,
record_history: bool = False,
overclamp_nudging: float = 0.25,
overclamp_magnitude: Optional[float] = None,
overclamp_exact_target: bool = False,
) -> dict:
"""Alternate two tasks using explicit local circuit updates.
`online_constant` and `online_sdil` take one neutral observation at the
beginning of each half-cycle. Frozen predictors take none during task
learning. The overclamping implementation uses the leading-order
constant-displacement signal of Eq. F6 and the error-proportional update
duration of Eq. F8; it is an analogue for these regression tasks, not a
reproduction of the paper's classification experiment.
"""
allowed = {
"raw", "frozen_constant", "frozen_sdil", "online_constant",
"online_sdil", "oracle", "same_rms_noise", "overclamp",
"overclamp_sdil",
}
if method not in allowed:
raise ValueError(f"unrecognized method {method}")
tasks = tuple(tasks)
if len(tasks) != 2:
raise ValueError("exactly two alternating tasks are required")
if period_seconds <= 0.0 or cycles < 1:
raise ValueError("period and cycles must be positive")
if method in {
"frozen_constant", "frozen_sdil", "online_constant", "online_sdil",
"overclamp_sdil",
} and predictor is None:
raise ValueError(f"{method} requires a predictor")
if method == "same_rms_noise" and noise_standard_deviation is None:
raise ValueError("same_rms_noise requires a standard deviation")
active_predictor = predictor.copy() if predictor is not None else None
gates = np.asarray(initial_gates, dtype=float).copy()
if gates.shape != (2,):
raise ValueError("initial gates must have shape (2,)")
nominal_step = circuit.integration_step_seconds
half_steps = max(1, int(round(period_seconds / (2.0 * nominal_step))))
rng = np.random.default_rng(seed)
initial_error_scale = float(np.mean([
abs(task.label_voltage - free_output(
circuit, gates, task.input_voltage))
for task in tasks
]))
initial_error_scale = max(initial_error_scale, 1e-6)
combined_error_history = []
cycle_span_history = []
gate_history = []
task_error_history = []
learning_on_time = 0.0
neutral_observations = 0
clipped_updates = 0
clamp_displacement_l1_time = 0.0
clamp_displacement_l2_time = 0.0
max_abs_clamp_displacement = 0.0
for _ in range(cycles):
half_endpoints = []
half_task_errors = []
for task in tasks:
if method in {"online_constant", "online_sdil"}:
neutral = bias_field(gates, bias_strength)
active_predictor.update(
gates, neutral, online_predictor_rate)
neutral_observations += 1
for _ in range(half_steps):
physical_bias = bias_field(gates, bias_strength)
if method in {"overclamp", "overclamp_sdil"}:
clean_rate, output_free, output_clamped = overclamped_clean_rate(
circuit,
gates,
task,
nudging=overclamp_nudging,
clamp_magnitude=overclamp_magnitude,
exact_target=overclamp_exact_target,
)
duration = nominal_step * abs(
task.label_voltage - output_free) / initial_error_scale
if method == "overclamp":
residual_bias = physical_bias
else:
residual_bias = (
physical_bias - active_predictor.predict(gates)
)
else:
clean_rate, output_free, output_clamped = standard_clean_rate(
circuit, gates, task)
duration = nominal_step
if method == "raw":
residual_bias = physical_bias
elif method == "oracle":
residual_bias = np.zeros(2, dtype=float)
elif method == "same_rms_noise":
residual_bias = rng.normal(
loc=0.0,
scale=np.asarray(noise_standard_deviation, dtype=float),
size=2,
)
else:
residual_bias = (
physical_bias - active_predictor.predict(gates)
)
proposed = gates + duration * (clean_rate + residual_bias)
clipped = np.clip(
proposed, circuit.gate_minimum, circuit.gate_maximum)
clipped_updates += int(np.any(clipped != proposed))
gates = clipped
learning_on_time += duration
displacement = abs(output_clamped - output_free)
clamp_displacement_l1_time += duration * displacement
clamp_displacement_l2_time += duration * displacement * displacement
max_abs_clamp_displacement = max(
max_abs_clamp_displacement, displacement)
half_endpoints.append(gates.copy())
half_task_errors.append(task_errors(circuit, gates, tasks))
half_task_errors_array = np.asarray(half_task_errors)
combined_error_history.append(float(np.mean(half_task_errors_array)))
cycle_span_history.append(float(np.linalg.norm(
half_endpoints[1] - half_endpoints[0])))
gate_history.append(np.asarray(half_endpoints).tolist())
task_error_history.append(half_task_errors_array.tolist())
summary_count = min(summary_cycles, cycles)
combined = np.asarray(combined_error_history[-summary_count:])
spans = np.asarray(cycle_span_history[-summary_count:])
result = {
"method": method,
"period_seconds": period_seconds,
"cycles": cycles,
"half_steps": half_steps,
"initial_gates": np.asarray(initial_gates, dtype=float).tolist(),
"final_gates": gates.tolist(),
"bias_strength": bias_strength,
"mean_combined_error": float(np.mean(combined)),
"std_combined_error": float(np.std(combined)),
"mean_cycle_span": float(np.mean(spans)),
"std_cycle_span": float(np.std(spans)),
"neutral_observations_during_learning": neutral_observations,
"learning_on_time_seconds": float(learning_on_time),
"clamp_displacement_l1_time_v_s": float(
clamp_displacement_l1_time),
"clamp_displacement_l2_time_v2_s": float(
clamp_displacement_l2_time),
"max_abs_clamp_displacement_v": float(
max_abs_clamp_displacement),
"clipped_updates": clipped_updates,
"final_predictor_coefficients": (
None if active_predictor is None
else active_predictor.coefficients.tolist()
),
}
if record_history:
result.update({
"combined_error_history": combined_error_history,
"cycle_span_history": cycle_span_history,
"half_cycle_gate_history": gate_history,
"half_cycle_task_error_history": task_error_history,
})
return result
|