Henry Barnes Claude Opus 4.6 commited on
Commit ·
e57c1b3
1
Parent(s): 4589b1a
fix: correct N2 learning opcodes (18→14) in comparison table and data
Browse filesBoth N1 and N2 have 14-opcode learning ISA. The N2's differentiator is
programmable neuron microcode, not more learning opcodes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -37,7 +37,7 @@ PROCESSORS = {
|
|
| 37 |
"total_neurons": 131072,
|
| 38 |
"dendrites": 4,
|
| 39 |
"graded_spike_bits": 8,
|
| 40 |
-
"learning_opcodes":
|
| 41 |
"max_axon_delay": 63,
|
| 42 |
"parity": "Intel Loihi 2",
|
| 43 |
"neuron_models": ["LIF", "CUBA", "ALIF", "Izhikevich", "Custom"],
|
|
@@ -46,7 +46,7 @@ PROCESSORS = {
|
|
| 46 |
"CUBA, LIF, ALIF, Izhikevich built-in",
|
| 47 |
"Custom neuron models via microcode",
|
| 48 |
"Graded spikes (8-bit payload)",
|
| 49 |
-
"On-chip learning (
|
| 50 |
"Dendritic compartments (4 per neuron)",
|
| 51 |
"Axonal delays (up to 63 timesteps)",
|
| 52 |
"Multi-chip scalability",
|
|
@@ -375,7 +375,7 @@ Configure networks, validate hardware constraints, and run simulations — all i
|
|
| 375 |
| **Neurons/core** | 1,024 | 1,024 |
|
| 376 |
| **Total neurons** | 131,072 | 131,072 |
|
| 377 |
| **Neuron models** | LIF | LIF, CUBA, ALIF, Izhikevich, Custom |
|
| 378 |
-
| **Learning** | 14-opcode ISA, STDP |
|
| 379 |
| **Dendrites** | 4 compartments | 4 compartments |
|
| 380 |
| **Graded spikes** | 8-bit | 8-bit |
|
| 381 |
| **Max axon delay** | 63 timesteps | 63 timesteps |
|
|
|
|
| 37 |
"total_neurons": 131072,
|
| 38 |
"dendrites": 4,
|
| 39 |
"graded_spike_bits": 8,
|
| 40 |
+
"learning_opcodes": 14,
|
| 41 |
"max_axon_delay": 63,
|
| 42 |
"parity": "Intel Loihi 2",
|
| 43 |
"neuron_models": ["LIF", "CUBA", "ALIF", "Izhikevich", "Custom"],
|
|
|
|
| 46 |
"CUBA, LIF, ALIF, Izhikevich built-in",
|
| 47 |
"Custom neuron models via microcode",
|
| 48 |
"Graded spikes (8-bit payload)",
|
| 49 |
+
"On-chip learning (14-opcode ISA)",
|
| 50 |
"Dendritic compartments (4 per neuron)",
|
| 51 |
"Axonal delays (up to 63 timesteps)",
|
| 52 |
"Multi-chip scalability",
|
|
|
|
| 375 |
| **Neurons/core** | 1,024 | 1,024 |
|
| 376 |
| **Total neurons** | 131,072 | 131,072 |
|
| 377 |
| **Neuron models** | LIF | LIF, CUBA, ALIF, Izhikevich, Custom |
|
| 378 |
+
| **Learning** | 14-opcode ISA, STDP | 14-opcode ISA, three-factor |
|
| 379 |
| **Dendrites** | 4 compartments | 4 compartments |
|
| 380 |
| **Graded spikes** | 8-bit | 8-bit |
|
| 381 |
| **Max axon delay** | 63 timesteps | 63 timesteps |
|