Spintronic Mapper¶
Maps SC networks onto magnetic tunnel junction (MTJ) arrays. Models
spin-torque switching (STT/SOT), TMR calculation, and MuMax3 co-simulation.
SpintronicDeviceConfig carries explicit write-path and parallel-state
resistance parameters, so switching energy and cell resistance are derived from
the selected device contract rather than a fixed generic MTJ constant.
Quick Start¶
from sc_neurocore.spintronic.spintronic_mapper import (
SpintronicMapper, MagneticDomainSim, SpinTorqueModel,
)
sc_neurocore.spintronic.spintronic_mapper
¶
Maps SC bitstreams to spintronic domain-wall and skyrmion logic.
Bridges deterministic SC arithmetic to magnetic-domain computing: domain-wall motion, skyrmion nucleation/annihilation, and spin-orbit torque (SOT) switching. Includes device variability models and co-simulation hooks for micromagnetic solvers (MuMax3).
Device technologies: - Domain-Wall (DW): Nanotrack racetrack with SOT-driven motion - Skyrmion (SKY): Skyrmion nucleation/annihilation gates - STT-MTJ: Spin-transfer torque magnetic tunnel junctions - SOT-MRAM: Spin-orbit torque MRAM cells
Pipeline
SC bitstream → SpintronicMapper → DeviceArray → MuMax3 co-sim
Compatible with:
- memristor/memristor_mapper.py — shares variability injection pattern
- hdl_gen/verilog_generator.py — RTL target for spintronic arrays
- chiplet_gen/ — spintronic dies as chiplet nodes
MaterialParams
dataclass
¶
Micromagnetic material parameters.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
cofeb_mgo()
classmethod
¶
CoFeB/MgO — standard STT-MTJ / SOT-MRAM stack.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
62 63 64 65 66 67 68 69 70 71 | |
pt_co_multilayer()
classmethod
¶
Pt/Co multilayer — skyrmion host.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
73 74 75 76 77 78 79 80 81 82 | |
w_cofeb()
classmethod
¶
W/CoFeB — SOT switching with heavy-metal underlayer.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
84 85 86 87 88 89 90 91 92 93 | |
SpintronicDeviceConfig
dataclass
¶
Configuration for a single spintronic device.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
switching_energy_fj
property
¶
Write-path switching energy, E = I² × R_write × t.
thermal_stability
property
¶
Thermal stability factor Δ = Ku × V / (kB × T).
Needs to be > 40 for 10-year retention.
read_disturb_probability
property
¶
Probability of read disturb (accidental flip during read).
Approximation: P_rd ∝ exp(-Δ) for in-plane STT read.
endurance_cycles
property
¶
Estimated write endurance cycles.
VariabilityModel
dataclass
¶
Process variability for spintronic devices.
Models dimension, anisotropy, and DMI variations from fab data.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
apply(device, rng)
¶
Return a variability-injected copy of the device.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
SpintronicCell
dataclass
¶
One cell in a spintronic array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |
SpintronicArray
¶
Crossbar array of spintronic devices for SC computation.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
program_weights(weights_q88)
¶
Program Q8.8 weights into the array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
307 308 309 310 311 312 313 | |
read_weights()
¶
Read weights back from the array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
315 316 317 318 319 320 321 | |
power_breakdown(bitstream_length=256)
¶
Per-array power breakdown in femtojoules.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | |
MappingResult
dataclass
¶
Result of mapping SC bitstreams to a spintronic array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
347 348 349 350 351 352 353 354 355 356 357 358 | |
SpintronicMapper
¶
Maps SC bitstreams + weights to a spintronic crossbar.
Performs: 1. Weight quantisation to device states (P/AP) 2. Array sizing from network dimensions 3. Energy/timing estimation 4. Monte-Carlo variability yield analysis
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
map_network(weights_q88, bitstream_length=256)
¶
Map a weight matrix to a spintronic array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
monte_carlo_yield(weights_q88, n_trials=100, tolerance_q88=16)
¶
Run Monte-Carlo yield analysis.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
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 | |
MuMax3ScriptGenerator
¶
Generates MuMax3 (.mx3) scripts for micromagnetic co-simulation.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 | |
SpintronicVerilogGenerator
¶
Generates Verilog wrappers for spintronic crossbar arrays.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | |
RacetrackShiftRegister
dataclass
¶
Domain-wall racetrack memory with current-driven bit shifting.
Models a nanotrack with N bit positions; SOT current pulses shift all domain walls one position per clock edge.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 | |
SkyrmionHallCorrector
dataclass
¶
Corrects skyrmion trajectory for the skyrmion Hall effect.
Skyrmions drift at an angle θ_H to the applied current direction. θ_H = arctan(4π Q / (α D)) where Q is topological charge.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | |
corrected_position(x_drive, track_width_nm)
¶
Return (x, y) position accounting for Hall drift.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
638 639 640 641 642 643 | |
MLCConfig
dataclass
¶
Multi-level cell configuration for spintronic devices.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | |
resistance_margins
property
¶
Resistance levels evenly spaced between R_P and R_AP.
quantize_weight(weight_float)
¶
Quantize a [0, 1] weight to an MLC level.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
717 718 719 720 | |
WriteVerifyResult
dataclass
¶
Result of a write-verify cycle.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
733 734 735 736 737 738 739 740 741 742 743 744 | |
AgingModel
dataclass
¶
Endurance degradation model for spintronic devices.
TMR and thermal stability degrade with write cycles.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | |
tmr_degradation(initial_tmr, endurance_limit)
¶
TMR degrades linearly as cycling approaches endurance limit.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
777 778 779 780 781 782 | |
stability_degradation(initial_delta, endurance_limit)
¶
Thermal stability degrades with oxide breakdown.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
784 785 786 787 788 789 | |
RadiationModel
dataclass
¶
SEU and TID models for spintronic devices in radiation environments.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | |
is_rad_hard
property
¶
Spintronic devices are inherently radiation-hard (non-charge-based).
seu_rate(flux_particles_cm2_s, n_devices)
¶
SEU events per second.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
809 810 811 | |
tid_degradation(dose_krad)
¶
Fraction of performance remaining after TID.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
813 814 815 816 817 | |
DefectEntry
dataclass
¶
One defective cell in the array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
828 829 830 831 832 833 834 | |
DefectMap
¶
Tracks and remaps defective cells in a spintronic array.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 | |
MuMax3Result
dataclass
¶
Parsed result from a MuMax3 simulation.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
869 870 871 872 873 874 875 876 877 878 879 880 881 882 | |
MuMax3OutputParser
¶
Parses MuMax3 table output for co-simulation integration.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 | |
parse_table(text)
staticmethod
¶
Parse a MuMax3 .table output (TSV with header).
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 | |
switching_current_vs_temperature(i_c0_ua, delta_0, temperature_k, temp_ref_k=300.0)
¶
Ic(T) = Ic0 × (1 - T/T_ref × kBT/(Δ0 × kBT_ref)).
Simplified Néel-Arrhenius model for thermally activated switching.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 | |
switching_time_vs_temperature(t_sw0_ns, temperature_k, temp_ref_k=300.0)
¶
Switching time increases with temperature due to thermal fluctuations.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
670 671 672 673 674 675 676 677 | |
retention_failure_probability(thermal_stability, time_seconds, attempt_freq_hz=1000000000.0)
¶
P_fail = 1 - exp(-t × f0 × exp(-Δ)).
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
683 684 685 686 687 688 689 690 691 692 693 694 | |
write_verify(cell, target_q88, max_attempts=5, rng=None)
¶
Program a cell with write-verify loop.
Source code in src/sc_neurocore/spintronic/spintronic_mapper.py
| Python | |
|---|---|
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | |