1. Introduction
Neuromorphic processor is a paradigm inspired by the human brain, has got traction as a promising avenue for developing energy-efficient and massively parallel computing architectures. The escalating demand for enhanced computational power coupled with the necessity for sustainable energy consumption in artificial intelligence and large-scale brain simulations has fueled this interest. Traditional von Neumann architectures, with their inherent separation of processing and memory units, face limitations in efficiently handling the parallelism and complex connectivity characteristic of neural networks.
In this context, the Spiking Neural Network Architecture (SpiNNaker) represents a pioneering effort in the field of neuromorphic processors. Developed at the University of Manchester, SpiNNaker is a massively parallel neuromorphic computer architecture distinguished by its scale, with a million-core system, and its primary focus on the real-time simulation of spiking neural networks (SNNs). This innovative architecture breaks away from the deterministic and repeatable communication principles of conventional supercomputers, instead embracing a model where processing elements communicate using simple, inherently unreliable messages known as spikes.
2. Core Operational Principles of the SpiNNaker Neuromorphic Processor
The fundamental principle of operation for the SpiNNaker neuromorphic processor spins around the simulation of neural activity through a vast network of interconnected processing elements. Unlike traditional computers that execute instructions sequentially, SpiNNaker employs a massively parallel approach, where each of its numerous cores independently models the behavior of one or more neurons. These artificial neurons communicate with each other using discrete, asynchronous events known as spikes, mirroring the communication method employed by biological neurons. In this computational model, information is not encoded in the amplitude or shape of these spikes, but rather in their precise timing.
A key capability of the SpiNNaker architecture is its ability to perform simulations in real time. This means that the artificial neural networks running on SpiNNaker can operate at speeds comparable to those observed in biological nervous systems, where time progresses continuously. This capability is crucial for applications such as neurorobotics, where the processing of sensory input and the generation of motor output must occur in a timely manner to interact effectively with the physical world.
Furthermore, the design of SpiNNaker emphasizes energy efficiency, a hallmark of biological brains. By utilizing an event-driven communication paradigm, where processing and communication are triggered only by the occurrence of spikes, SpiNNaker minimizes power consumption. Only the active neurons and synapses involved in processing a spike consume energy, while the rest of the system remains idle. This approach contrasts sharply with traditional, synchronous computing systems where power is consumed regardless of the level of activity. The core design of SpiNNaker, therefore, prioritizes mimicking the brain’s neural signaling through spikes, leading to both biological plausibility and computational efficiency
3. Internal Architecture
- 3.1. The SpiNNaker Chip: ARM9 Cores and their Functionality
The fundamental building block of the SpiNNaker system is the SpiNNaker chip, a complex System-on-Chip (SoC) designed with a Globally Asynchronous Locally Synchronous (GALS) architecture. Each chip originally housed 18 ARM9 processor cores, each operating at a clock speed of 200 MHz. These cores serve as the computational units responsible for simulating the dynamics of individual neurons. One of these cores on each chip is typically designated as a monitor core, tasked with performing system management functions, while the remaining cores are available for running the user’s neural network applications. The GALS nature of the chip means that the individual processing cores function as synchronous islands, operating with their own local clocks, while the communication between these islands and across the chip is handled asynchronously. This design choice, utilizing energy-efficient ARM cores, reflects a deliberate trade-off where some performance is sacrificed to achieve significantly enhanced power efficiency, aligning with the project’s overarching goals. The subsequent generation, SpiNNaker2, features a significant increase in the number of cores per chip, incorporating 153 ARM cores, further enhancing the platform’s parallel processing capabilities.
- 3.2. Memory Hierarchy: Local Tightly-Coupled Memory and Shared SDRAM
The SpiNNaker chip employs a two-level memory hierarchy to manage the storage and retrieval of data required for neural simulations. Each of the ARM9 cores is equipped with a small but fast local memory, known as Tightly-Coupled Memory (TCM). This TCM is further divided into 32KB for storing instructions and 64KB for data. The neuron states, which represent the dynamic properties of the simulated neurons (such as membrane potential), are typically stored in this fast local memory to enable rapid access during the simulation process.
In addition to the local TCM, each SpiNNaker chip is paired with a larger, shared off-chip SDRAM (Synchronous Dynamic Random Access Memory) with a capacity of 128MB. The synaptic parameters, which define the strength and other characteristics of the connections between neurons, are primarily stored in this shared SDRAM. Given the vast number of synapses in even moderately sized neural networks, the larger capacity of the SDRAM is essential for accommodating this data. To facilitate efficient data transfer between the off-chip SDRAM and the local TCM of the processing cores, the SpiNNaker architecture incorporates Direct Memory Access (DMA) controllers. These DMA units allow the cores to request and receive blocks of synaptic data from the SDRAM directly into their local memory without requiring constant intervention from the processor itself, thereby optimizing the simulation performance. This memory hierarchy, with its balance between fast local memory for active computations and larger shared memory for storing network parameters, is carefully designed to meet the specific demands of simulating large-scale spiking neural networks within the constraints of the hardware.
- 3.3. The Asynchronous Packet Routing System and Inter-Chip Communication
A defining feature of the SpiNNaker architecture is its custom-designed packet routing system, an intricate communication fabric inspired by the highly interconnected nature of the brain. This system facilitates the exchange of small packets of data, representing neural spikes, between the numerous processing cores both within a single chip and across multiple interconnected chips. The communication relies on the principle of Address Event Representation (AER), where the information conveyed is primarily the identity (address) of the neuron that has fired a spike, with the timing being implicit in the arrival of the packet. A key aspect of SpiNNaker’s communication infrastructure is its efficient multicast routing mechanism. This allows a single spike originating from one core to be simultaneously delivered to multiple destination cores, which is crucial for emulating the high fan-out connectivity observed in biological neural networks. Each SpiNNaker chip is equipped with six bidirectional links that enable it to connect to its neighboring chips, typically arranged in a 2D or 3D torus topology, forming a large-scale, interconnected system. This sophisticated communication infrastructure allows the SpiNNaker machine to achieve a very high bisection bandwidth, enabling a large volume of spike traffic to be routed efficiently across the system.
The routing of these spike packets is managed by routing tables stored within the router of each SpiNNaker chip. These tables contain entries that map the address of a spiking neuron to a set of destination cores or neighboring chips. When a spike packet arrives at a router, the router consults its routing table to determine where to forward the packet. If no specific route is found for a given spike, a default routing mechanism is employed, typically sending the packet out of the link opposite to the one it was received on. The SpiNNaker routing system also incorporates features for fault tolerance, allowing the system to continue operating even in the presence of some chip or link failures. The asynchronous nature of spike transmission in SpiNNaker contributes significantly to its efficiency, as communication only occurs when neurons fire, minimizing unnecessary data transfer and power consumption.
4. Implementation of Spiking Neural Networks on SpiNNaker
- 4.1. Supported Neuron Models for Biological Realism
The SpiNNaker neuromorphic processor distinguishes itself through the programmability of its ARM cores, which allows researchers to implement a wide variety of neuron models in software. This flexibility is crucial for achieving biological realism in simulations, as different types of neurons in the brain exhibit diverse firing patterns and dynamics. Among the commonly implemented models is the Leaky Integrate-and-Fire (LIF) model, a computationally efficient model that captures the basic behavior of a neuron integrating incoming signals and firing a spike when its membrane potential reaches a threshold.
For more biologically accurate simulations, researchers can also implement more complex neuron models on SpiNNaker. These include conductance-based models, which simulate the flow of ions through specific ion channels in the neuron’s membrane, the Izhikevich model, known for its ability to reproduce a wide range of neuronal firing patterns with relatively low computational cost, and the Adaptive Exponential Integrate-and-Fire (AdEx) model, which incorporates mechanisms for spike frequency adaptation. Implementing these more detailed models often involves a trade-off with computational cost and the number of neurons that can be simulated in real time. However, the ongoing advancements in the SpiNNaker architecture, such as the increased processing power in SpiNNaker2, are enabling researchers to explore more complex neuron models with greater efficiency.
- 4.2. Mechanisms for Synaptic Plasticity and Learning
Synaptic plasticity, the capacity of synapses to modify their strength over time in response to neural activity, is believed to be a fundamental mechanism for learning and memory in the brain. SpiNNaker provides mechanisms to implement various forms of synaptic plasticity, allowing researchers to investigate these crucial processes in their neural network simulations. In the original SpiNNaker architecture, a dedicated plasticity core approach was introduced, where a subset of the ARM cores is exclusively dedicated to processing synaptic plasticity updates, operating in the background while other cores handle the neural and synaptic simulations. This separation allows for efficient management of the computational resources required for both neural dynamics and weight modifications.
SpiNNaker supports a range of spike-timing dependent plasticity (STDP) rules, where the strength of a synapse is adjusted based on the relative timing of the pre- and post-synaptic spikes. These rules, which can lead to either long-term potentiation (strengthening) or long-term depression (weakening) of synaptic connections, are crucial for learning temporal sequences and forming associations in neural networks. Due to the programmable nature of the ARM cores, SpiNNaker offers the flexibility to implement custom learning rules beyond the standard STDP variations, enabling the exploration of novel learning paradigms. Furthermore, the development of SpiNNaker2 has brought advancements in on-chip learning capabilities, suggesting a continued focus on enabling more sophisticated and biologically plausible learning mechanisms within the architecture. Implementing these plasticity mechanisms on the large scale offered by SpiNNaker presents challenges in terms of managing computational resources and ensuring efficient access to synaptic weights stored in memory. However, the ongoing research and development efforts continue to push the boundaries of what is possible in simulating learning and adaptive behavior on neuromorphic hardware.
- 4.3. Leveraging Event-Driven Communication for Efficiency
A cornerstone of SpiNNaker’s architecture and its ability to efficiently implement spiking neural networks is its reliance on asynchronous, event-driven communication between processing elements. As previously discussed, neurons on SpiNNaker communicate through the transmission of small packets representing spikes. This sparse communication paradigm is highly energy-efficient, as power is primarily consumed only when a neuron fires and transmits a spike. This event-driven approach also minimizes the bandwidth required for communication, as information is only exchanged when there is a change in neural activity.
The use of event-driven processing on SpiNNaker directly contributes to its real-time performance capabilities. The SpiNNaker router is specifically optimized for handling a high volume of these small packets (spikes) with minimal latency. This approach, inspired by the brain’s own communication methods, is a key factor in SpiNNaker’s ability to simulate complex neural networks efficiently.
5. The Genesis of SpiNNaker: History of Development
- 5.1. Key Individuals and Institutions Involved
The SpiNNaker project is primarily the brainchild of the Advanced Processor Technologies (APT) Research Group within the Department of Computer Science at the University of Manchester. The leading figure behind this ambitious endeavor is Professor Steve Furber, a renowned computer engineer who conceived the initial architectural innovations required for real-time brain modeling between 2000 and 2005. The project has also involved collaborations with other academic institutions and industrial partners, including the University of Southampton and ARM Ltd., which contributed to various aspects of the hardware and software development. Dr. Andrew Rowley has played a crucial role in leading the software development efforts for SpiNNaker since 2014, focusing on creating tools that enable the compilation and execution of large neural networks on the million-core machine. Furthermore, Dr. Gengting Liu has been instrumental in the hardware design and low-level software system of the second-generation SpiNNaker machine (SpiNNaker2). The sustained involvement of these key individuals underscores the long-term commitment and deep expertise driving the SpiNNaker project. The collaborative nature of the project highlights the interdisciplinary approach required to tackle the complex challenges of neuromorphic computing. The University of Manchester’s rich history in computer science, marked by pioneering work from figures like Alan Turing, provides a strong foundation and context for the ambitious goals of the SpiNNaker project.
- 5.2. Timeline of Key Milestones and Achievements
The SpiNNaker project officially began in 2005, although its conceptualization dates back to the late 1990s. The development of the first prototype SpiNNaker chips was a significant milestone, with the initial test chip being delivered in December 2009. The first full SpiNNaker chip with 18 processors was delivered in 2011, marking a significant step towards the project’s goals. After years of intensive development and construction, the landmark achievement of creating a one-million-core SpiNNaker machine was reached in 2018. This marked a significant milestone in the project’s 20-year journey from conception to realization. The development of the second-generation SpiNNaker machine, SpiNNaker2, began in 2013 in collaboration with the Technische Universität Dresden, with the aim of achieving a tenfold increase in computing performance while maintaining similar power consumption. The first SpiNNaker2 silicon became available in late 2022, with larger boards becoming available subsequently. The construction of a large-scale SpiNNaker2 system in Dresden, known as SpiNNcloud, is underway and expected to be available for cloud access. These milestones highlight the continuous progress and evolution of the SpiNNaker platform, driven by the dedication of researchers at the University of Manchester and their collaborators.
6. Unveiling the Motivations and Design Philosophy Behind SpiNNaker
- 6.1. Addressing the Challenges of Brain Simulation
The primary motivation behind the SpiNNaker project was to create a computing platform specifically designed to tackle the immense challenges of simulating large-scale neural networks with a level of detail and speed that could contribute to our understanding of how the brain functions. The sheer scale and complexity of the mammalian nervous system, with its billions of neurons and trillions of synapses, present a formidable computational challenge. Researchers aimed to create a platform capable of modeling a significant portion of the human brain, such as 1%, or an entire mouse brain, in biological real time. This ambition required a departure from conventional supercomputing architectures, which often struggle with the unique communication demands of neural networks, where individual neurons connect to thousands of others.
- 6.2. Emphasis on Parallelism, Real-time Operation, and Energy Efficiency
The design philosophy of SpiNNaker is heavily influenced by the fundamental characteristics of biological brains, particularly their massive parallelism, real-time operation, and remarkable energy efficiency. The architecture is designed to support a massive number of processing cores, enabling the parallel execution of neural simulations. The ability to simulate neural networks in real time is another crucial design goal, enabling the integration of SpiNNaker with robotic systems and other real-world applications. Furthermore, energy efficiency was a critical consideration from the outset, aiming to replicate the brain’s remarkable ability to perform complex computations with very low power consumption. The design choices in SpiNNaker, such as the use of low-power ARM cores and an event-driven communication system, reflect this emphasis on minimizing energy usage. The project’s focus on these three key aspects – parallelism, real-time operation, and energy efficiency – distinguishes it from traditional high-performance computing systems and underscores its ambition to provide a truly brain-inspired computing platform.
Sources
- SpiNNaker – Human Brain Project, fecha de acceso: abril 8, 2025, https://www.humanbrainproject.eu/en/collaborate-hbp/innovation-industry/technology-catalogue/spinnaker/
- Neuromorphic Engineering: Developing Brain-Inspired Machines …, fecha de acceso: abril 8, 2025, https://viso.ai/deep-learning/neuromorphic-engineering/
- Neuromorphic Computing. An overview of the history of… | by QuAIL Technologies – Medium, fecha de acceso: abril 8, 2025, https://medium.com/quail-technologies/day-18-neuromorphic-computing-752e6020332d
- SpiNNaker Home Page – Research Groups: APT – Advanced Processor Technologies (School of Computer Science – The University of Manchester), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/
- (PDF) SpiNNaker: A Spiking Neural Network Architecture – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/publication/340279616_SpiNNaker_A_Spiking_Neural_Network_Architecture
- Overview of the SpiNNaker system architecture – ePrints Soton – University of Southampton, fecha de acceso: abril 8, 2025, https://eprints.soton.ac.uk/350495/1/TCv2.pdf
- SpiNNTools: The Execution Engine for the SpiNNaker Platform – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2019.00231/full
- SpiNNaker – Wikipedia, fecha de acceso: abril 8, 2025, https://en.wikipedia.org/wiki/SpiNNaker
- (PDF) The SpiNNaker project – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/publication/262025847_The_SpiNNaker_project
- Implementation of an unsupervised fully-connected spiking neural network on SpiNNaker for pattern classification – Webthesis – Politecnico di Torino, fecha de acceso: abril 8, 2025, https://webthesis.biblio.polito.it/25523/
- SPINNAKER – OAPEN Library, fecha de acceso: abril 8, 2025, https://library.oapen.org/bitstream/handle/20.500.12657/47874/9781680836530.pdf?sequence=1&isAllowed=y
- ‘Human brain’ supercomputer with 1 million processors switched on for first time – The University of Manchester, fecha de acceso: abril 8, 2025, https://www.manchester.ac.uk/about/news/human-brain-supercomputer-with-1million-processors-switched-on-for-first-time/
- SpiNNaker – The University of Manchester, fecha de acceso: abril 8, 2025, https://www.scieng.manchester.ac.uk/tomorrowlabs/spinnaker/
- Neuromorphic Sentiment Analysis Using Spiking Neural Networks – PubMed, fecha de acceso: abril 8, 2025, https://pubmed.ncbi.nlm.nih.gov/37765758/
- Performance Comparison of the Digital Neuromorphic Hardware SpiNNaker and the Neural Network Simulation Software NEST for a Full-Scale Cortical Microcircuit Model – PMC, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC5974216/
- The SpiNNaker Supercomputer, Modeled After the Human Brain, Is Up and Running, fecha de acceso: abril 8, 2025, https://singularityhub.com/2018/11/19/the-million-core-spinnaker-supercomputer-is-up-and-running/
- A Look at SpiNNaker 2 – University of Dresden – Neuromorphic Chip, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/neuromorphic-computing/hardware/spinnaker-2-university-of-dresden/
- Spinnaker Real Estate Partners: Home, fecha de acceso: abril 8, 2025, https://spinrep.com/
- SpiNNaker Project – Research Groups: APT – Advanced Processor Technologies (School of Computer Science – The University of Manchester), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/project/
- Neuromorphic Computing – Human Brain Project, fecha de acceso: abril 8, 2025, https://www.humanbrainproject.eu/en/science-development/focus-areas/neuromorphic-computing/
- SpiNNaker Project – Boards and Machines. – Advanced Processor Technologies (APT) – The University of Manchester, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/hardware/
- [2103.08392] The SpiNNaker 2 Processing Element Architecture for Hybrid Digital Neuromorphic Computing – arXiv, fecha de acceso: abril 8, 2025, https://arxiv.org/abs/2103.08392
- SpiNNaker2 Chip Topology, fecha de acceso: abril 8, 2025, https://spinnaker2.gitlab.io/getting-started/2-s2-chip-topology/
- Evaluation of a Large-Scale SpiNNaker System – UPV/EHU, fecha de acceso: abril 8, 2025, http://www.sc.ehu.es/ccwbayes/members/jnavaridas/pubs/jor08.pdf
- SpiNNaker2 – SpiNNcloud Systems, fecha de acceso: abril 8, 2025, https://spinncloud.com/portfolio/spinnaker2/
- Low-Power Deep Learning Inference using the SpiNNaker Neuromorphic Platform – OSTI.GOV, fecha de acceso: abril 8, 2025, https://www.osti.gov/servlets/purl/1761866
- Neuro-Evolution of Spiking Neural Networks on SpiNNaker Neuromorphic Hardware, fecha de acceso: abril 8, 2025, http://vigir.missouri.edu/~gdesouza/Research/Conference_CDs/IEEE_SSCI_2016/pdf/SSCI16_paper_607.pdf
- SpiNNaker: A Spiking Neural Network Architecture – Now Publishers, fecha de acceso: abril 8, 2025, https://www.nowpublishers.com/article/BookDetails/9781680836523
- Structural Plasticity on the SpiNNaker Many-Core Neuromorphic System – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/articles/10.3389/fnins.2018.00434/full
- SpiNNaker Event-driven Neural Application Model. – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/SpiNNaker-Event-driven-Neural-Application-Model_fig10_220277134
- Overview of the SpiNNaker system architecture – YouTube, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=EhPpxsK2Ia0
- SpiNNaker – Science and Industry Museum blog -, fecha de acceso: abril 8, 2025, https://blog.scienceandindustrymuseum.org.uk/spinnaker/
- 1. Origins – Now Publishers, fecha de acceso: abril 8, 2025, https://nowpublishers.com/article/Chapter/9781680836523?cId=978-1-68083-653-0.ch1
- Spinnaker Residence – Dubai – Propsearch.ae, fecha de acceso: abril 8, 2025, https://propsearch.ae/dubai/spinnaker-residence
- SpiNNaker brain simulation project hits one million cores on a single machine – DCD, fecha de acceso: abril 8, 2025, https://www.datacenterdynamics.com/en/news/spinnaker-brain-simulation-project-hits-one-million-cores-single-machine/
- Carver Mead: Microelectronics, neuromorphic computing, and life at the frontiers of science and technology – SPIE, fecha de acceso: abril 8, 2025, https://spie.org/news/photonics-focus/septoct-2024/inventing-the-integrated-circuit
- Neuromorphic computing – Wikipedia, fecha de acceso: abril 8, 2025, https://en.wikipedia.org/wiki/Neuromorphic_computing
- August 1, 2020 | Neuromorphic Chips Take Shape – California NanoSystems Institute, fecha de acceso: abril 8, 2025, https://cnsi.ucla.edu/august-1-2020-neuromorphic-chips-take-shape/
- IBM’s Incredible TrueNorth Chip || Neuromorphic Computing – YouTube, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=X2TYAcr36r0
- TrueNorth: A Deep Dive into IBM’s Neuromorphic Chip Design, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/blog/truenorth-deep-dive-ibm-neuromorphic-chip-design/
- TrueNorth: Design and Tool Flow of a 65 mW 1 Million Neuron Programmable Neurosynaptic Chip, fecha de acceso: abril 8, 2025, https://redwood.berkeley.edu/wp-content/uploads/2021/08/Akopyan2015.pdf
- TrueNorth Architecture IBM’s Neuromorphic Chip – Janathjsk – Medium, fecha de acceso: abril 8, 2025, https://janathjsk.medium.com/truenorth-architecture-ibms-neuromorphic-chip-63cbfec42b98
- A Look at Loihi – Intel – Neuromorphic Chip, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/neuromorphic-computing/hardware/loihi-intel/
- Intel Loihi: A Neuromorphic Breakthrough | by Prayag Mohanty – Medium, fecha de acceso: abril 8, 2025, https://medium.com/@topper1728/intel-loihi-a-neuromorphic-experiment-4e08bb901dae
- Neuromorphic Computing and Engineering with AI | Intel®, fecha de acceso: abril 8, 2025, https://www.intel.com/content/www/us/en/research/neuromorphic-computing.html
- SpiNNaker Jupyter service (7.2.1) – EBRAINS, fecha de acceso: abril 8, 2025, https://search.kg.ebrains.eu/instances/0da1752b-1c42-4d96-847e-10c4daf14076?noSilentSSO=true
- Spinnaker chip organization. (NoC: network on a chip.) – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/Spinnaker-chip-organization-NoC-network-on-a-chip_fig6_220651350
- SpiNNaker: Mapping Neural Networks onto a Massively-Parallel Chip Multiprocessor – Advanced Processor Technologies (APT), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/ftp/pub/apt/papers/MMK_IJCNN08.pdf
- What Is Neuromorphic Computing and How Could It Impact Enterprise IT? – Turn-key Technologies, fecha de acceso: abril 8, 2025, https://www.turn-keytechnologies.com/blog/network-solutions/what-is-neuromorphic-computing-how-it-impacts-enterprise-it
- Exploring Neuromorphic Computing for AI: Why Spikes? (Part One), fecha de acceso: abril 8, 2025, https://www.edge-ai-vision.com/2019/07/exploring-neuromorphic-computing-for-ai-why-spikes-part-one/
- Intel Ramps Up Neuromorphic Computing Effort with New Research Partners – TOP500, fecha de acceso: abril 8, 2025, https://www.top500.org/news/intel-ramps-up-neuromorphic-computing-effort-with-new-research-partners/
- Intel Debuts Pohoiki Beach, Its 8M Neuron Neuromorphic Development System – HPCwire, fecha de acceso: abril 8, 2025, https://www.hpcwire.com/2019/07/17/intel-debuts-pohoiki-beach-its-8m-neuron-neuromorphic-development-system/
- Intel Scales Neuromorphic Research System to 100 Million Neurons, fecha de acceso: abril 8, 2025, https://www.intc.com/news-events/press-releases/detail/12/intel-scales-neuromorphic-research-system-to-100-million
- Intel Rolls Out New Loihi 2 Neuromorphic Chip: Built on Early Intel 4 Process – AnandTech, fecha de acceso: abril 8, 2025, https://www.anandtech.com/show/16960/intel-loihi-2-intel-4nm-4
- Intel’s Loihi ‘brain chips’ now available to researchers – TechCentral.ie, fecha de acceso: abril 8, 2025, https://www.techcentral.ie/intels-loihi-brain-chips-now-available-to-researchers/
- Intel Editorial: Intel’s New Self-Learning Chip Promises to Accelerate Artificial Intelligence, fecha de acceso: abril 8, 2025, https://www.intc.com/news-events/press-releases/detail/202/intel-editorial-intels-new-self-learning-chip-promises
- Intel Announces Neuromorphic Research Progress, fecha de acceso: abril 8, 2025, https://download.intel.com/newsroom/2021/archive/2018-12-06-news-intel-announces-neuromorphic-computing-research-collaborators.pdf
- Update on Intel’s Neuromorphic Ecosystem Growth and Progress, fecha de acceso: abril 8, 2025, https://www.intel.com/content/www/us/en/newsroom/news/neuromorphic-ecosystem-growth-progress.html
- Intel Announces Neuromorphic Computing Research Collaborators – UTK-EECS, fecha de acceso: abril 8, 2025, https://www.eecs.utk.edu/intel-announces-neuromorphic-computing-research-collaborators/
- SpiNNaker, the Million-Core Supercomputer, Finally Switched On – News – All About Circuits, fecha de acceso: abril 8, 2025, https://www.allaboutcircuits.com/news/simulate-human-brain-spinnaker-million-core-computer-switched-on/
- SpiNNaker: A Supercomputer Based on the Human Brain – YouTube, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=8LSWp5CQgjY
- Supercomputer ‘SpiNNaker’ Designed To Work Like Human Brain Switched On For The First Time – Swarajya, fecha de acceso: abril 8, 2025, https://swarajyamag.com/insta/supercomputer-spinnaker-designed-to-work-like-human-brain-switched-on-for-the-first-time
- Neuromorphic Computing and the Human Brain Project: An Interview with Prof. Steve Furber on SpiNNaker and Cross-Disciplinary Brain Research, fecha de acceso: abril 8, 2025, https://www.humanbrainproject.eu/en/follow-hbp/news/2023/09/01/neuromorphic-computing-and-human-brain-project-interview-prof-steve-furber-spinnaker-and-cross-disciplinary-brain-research/
- SpiNNaker: Next-level thinking – ARM Community Forums, fecha de acceso: abril 8, 2025, https://community.arm.com/arm-research/b/articles/posts/spinnaker-next-level-thinking
- What Is Neuromorphic Computing? – IBM, fecha de acceso: abril 8, 2025, https://www.ibm.com/think/topics/neuromorphic-computing
- MODELING SPIKING NEURAL NETWORKS ON SPINNAKER – Advanced Processor Technologies (APT), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/ftp/pub/apt/papers/XJIN_CISE_10.pdf
- Home – Modelling the Human Brain with specialised CPUs – Gazettabyte, fecha de acceso: abril 8, 2025, https://www.gazettabyte.com/home/2023/7/30/modelling-the-human-brain-with-specialised-cpus.html
- SpiNNaker chip – Advanced Processor Technologies (APT) – The University of Manchester, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/SpiNNchip/
- SpiNNaker – APT – The University of Manchester – WikiChip, fecha de acceso: abril 8, 2025, https://en.wikichip.org/wiki/university_of_manchester/spinnaker
- SpiNNaker datasheet version 2.02 6 January 2011, fecha de acceso: abril 8, 2025, https://spinnakermanchester.github.io/docs/SpiNN2DataShtV202.pdf
- (PDF) SpiNNaker: A 1-W 18-Core System-on-Chip for Massively-Parallel Neural Network Simulation – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/publication/260648207_SpiNNaker_A_1-W_18-Core_System-on-Chip_for_Massively-Parallel_Neural_Network_Simulation
- Understanding the Interconnection Network of SpiNNaker – Advanced Processor Technologies (APT), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/ftp/pub/apt/papers/JavN_ICS09.pdf
- The SpiNNaker 2 Processing Element Architecture for Hybrid Digital Neuromorphic Computing – arXiv, fecha de acceso: abril 8, 2025, https://arxiv.org/pdf/2103.08392
- SpiNNaker2: A Large-Scale Neuromorphic System for Event-Based and Asynchronous Machine Learning – arXiv, fecha de acceso: abril 8, 2025, https://arxiv.org/html/2401.04491v1
- SpiNNaker 2: A 10 Million Core Processor System for Brain Simulation and Machine Learning – arXiv, fecha de acceso: abril 8, 2025, https://arxiv.org/pdf/1911.02385
- (PDF) Overview of the SpiNNaker System Architecture – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/publication/260585643_Overview_of_the_SpiNNaker_System_Architecture
- Synapse-Centric Mapping of Cortical Models to the SpiNNaker Neuromorphic Architecture, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC5022244/
- A framework for plasticity implementation on the SpiNNaker neural architecture – PMC, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC4299433/
- Breaking the millisecond barrier on SpiNNaker: implementing asynchronous event-based plastic models with microsecond resolution – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2015.00206/full
- SpiNNaker Project – System Software. – Advanced Processor Technologies (APT) – The University of Manchester, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/software/
- SpiNNaker: Event-based simulation – quantitative behaviour – ePrints Soton – University of Southampton, fecha de acceso: abril 8, 2025, https://eprints.soton.ac.uk/413671/1/TMSCS_2017_05_0030_main.pdf
- Scalable Event-Driven Native Parallel Processing: The SpiNNaker Neuromimetic System – Advanced Processor Technologies (APT), fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/ftp/pub/apt/papers/Rast_ACMCF10.pdf
- SpiNNTools: The Execution Engine for the SpiNNaker Platform – PMC, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC6444189/
- SpiNNaker: Mapping Neural Networks onto a Massively-Parallel Chip Multiprocessor, fecha de acceso: abril 8, 2025, https://www.researchgate.net/publication/221531727_SpiNNaker_Mapping_Neural_Networks_onto_a_Massively-Parallel_Chip_Multiprocessor
- Breaking the millisecond barrier on SpiNNaker: implementing asynchronous event-based plastic models with microsecond resolution – PubMed Central, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC4458614/
- Building a Spiking Neural Network Model of the Basal Ganglia on SpiNNaker – White Rose Research Online, fecha de acceso: abril 8, 2025, https://eprints.whiterose.ac.uk/129097/1/Basabdatta_etal_AuthorProof.pdf
- Real-time cortical simulation on neuromorphic hardware – PMC, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC6939236/
- E-prop on SpiNNaker 2: Exploring online learning in spiking RNNs on neuromorphic hardware – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2022.1018006/full
- Privacy Policy – Spinnaker Projects, fecha de acceso: abril 8, 2025, https://spinnakerprojects.com/privacy-policy/
- SpiNNaker – Documentation for HPC – GWDG, fecha de acceso: abril 8, 2025, https://docs.hpc.gwdg.de/services/neuromorphic-computing/spinnaker/index.html
- Memory-Efficient Deep Learning on a SpiNNaker 2 Prototype – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2018.00840/full
- Event-based backpropagation on the neuromorphic platform SpiNNaker2 – arXiv, fecha de acceso: abril 8, 2025, https://arxiv.org/html/2412.15021v1
- ARM Inventor Steve Furber on SpiNNaker 1, 2 and Beyond – EE Times Podcast, fecha de acceso: abril 8, 2025, https://www.eetimes.com/podcasts/arm-inventor-steve-furber-on-spinnaker-1-2-and-beyond/
- History – Spinnaker Global, fecha de acceso: abril 8, 2025, https://spinnaker-global.com/about/history/
- governance/rfc/eol_kubernetes_v1.md at master · spinnaker/governance – GitHub, fecha de acceso: abril 8, 2025, https://github.com/spinnaker/governance/blob/master/rfc/eol_kubernetes_v1.md
- Carver Mead – Lemelson-MIT Program, fecha de acceso: abril 8, 2025, https://lemelson.mit.edu/resources/carver-mead
- Neuromorphic electronic systems – Proceedings of the IEEE, fecha de acceso: abril 8, 2025, https://hasler.ece.gatech.edu/Published_papers/Technology_overview/MeadNeuro1990.pdf
- TrueNorth is a brain-inspired chip architecture built from an… | Download Scientific Diagram – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/TrueNorth-is-a-brain-inspired-chip-architecture-built-from-an-interconnected-network-of_fig4_260869530
- Loihi – Intel – WikiChip, fecha de acceso: abril 8, 2025, https://en.wikichip.org/wiki/intel/loihi
- Simplified Diagram of Loihi 2 Neurocore Architecture. – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/Simplified-Diagram-of-Loihi-2-Neurocore-Architecture_fig1_372584421
- SpiNNaker Publications SpiNNaker Publications – Advanced Processor Technologies (APT) – The University of Manchester, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/Publications/
- TrueNorth: Design and Tool Flow of a 65 mW 1 Million Neuron Programmable Neurosynaptic Chip – IBM Research, fecha de acceso: abril 8, 2025, https://research.ibm.com/publications/truenorth-design-and-tool-flow-of-a-65-mw-1-million-neuron-programmable-neurosynaptic-chip?utm_source=thegpu.ai&utm_medium=referral&utm_campaign=issue-8-the-ultimate-cheat-sheet-for-ai-processors
- Large-Scale Simulations of Plastic Neural Networks on Neuromorphic Hardware – PMC, fecha de acceso: abril 8, 2025, https://pmc.ncbi.nlm.nih.gov/articles/PMC4823276/
- Neuromorphic Embedded Systems – TUM Neuroscientific System Theory (NST), fecha de acceso: abril 8, 2025, https://tum.neurocomputing.systems/en/research/neuromorphic-systems/index.html
- Neuromorphic Computing for Accelerating AI Models: SpiNNaker and Loihi Platforms, fecha de acceso: abril 8, 2025, https://www.cmc.ca/wp-content/uploads/2020/03/Idir-Mellal-University-of-Toronto.pdf
- Steve Furber – CHM – Computer History Museum, fecha de acceso: abril 8, 2025, https://computerhistory.org/profile/steve-furber/
- Research IT and SpiNNaker – The University of Manchester, fecha de acceso: abril 8, 2025, https://research-it.manchester.ac.uk/news/2020/04/28/research-it-and-spinnaker/
- Neuromorphic Hardware Guide, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/neuromorphic-computing/hardware/
- SpiNNaker-Based Supercomputer Launches in Dresden – EE Times, fecha de acceso: abril 8, 2025, https://www.eetimes.com/spinnaker-based-neuromorphic-supercomputer-launches-in-dresden/
- Research Groups: APT – Advanced Processor Technologies (School …, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/project/Access/
- SpiNNaker – Tools – EBRAINS, fecha de acceso: abril 8, 2025, https://www.ebrains.eu/tools/spinnaker
- Carver Mead Earns Lifetime Contribution Award for Neuromorphic Engineering – Caltech, fecha de acceso: abril 8, 2025, https://www.caltech.edu/about/news/carver-mead-earns-lifetime-contribution-award-for-neuromorphic-engineering
- Loihi 2 – Intel – WikiChip, fecha de acceso: abril 8, 2025, https://en.wikichip.org/wiki/intel/loihi_2
- Intel Builds World’s Largest Neuromorphic System to Enable More Sustainable AI, fecha de acceso: abril 8, 2025, https://newsroom.intel.com/artificial-intelligence/intel-builds-worlds-largest-neuromorphic-system-to-enable-more-sustainable-ai
- SpiNNaker Neural Network Architecture | Ontosight – AI Research Assistant, fecha de acceso: abril 8, 2025, https://ontosight.ai/glossary/term/spinnaker-neural-network-architecture–67a142766c3593987a5519f4
- Getting started with spiNNaker – Google Groups, fecha de acceso: abril 8, 2025, https://groups.google.com/g/spinnakerusers/c/11AaZitvDQU
- Low-Power Deep Learning Inference using the SpiNNaker Neuromorphic Platform – OSTI.GOV, fecha de acceso: abril 8, 2025, https://www.osti.gov/servlets/purl/1641484
- Documentation – Spinnaker, fecha de acceso: abril 8, 2025, https://spinnaker.io/docs/
- Andrew Rowley: Using the SpiNNaker neuromorphic compute system interactively, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=xtsaH40MrLQ
- try.spinnaker.io, fecha de acceso: abril 8, 2025, https://spinnaker.io/docs/community/gsoc/projects/2021/try-spinnaker-io/
- Spinnaker Workshop Part Four – AWS Quick Start – Thomas McGonagle, Armory – YouTube, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=QFZPCHHKFTU
- I just downloaded Spinnaker, how do I start using it? – Apliter Termografia, fecha de acceso: abril 8, 2025, https://www.apliter.com/en/blog/ufaq/acabo-de-descargar-spinnaker-como-empiezo-a-utilizarlo/
- Getting Started – Spinnaker, fecha de acceso: abril 8, 2025, https://spinnaker.io/docs/guides/user/managed-delivery/getting-started/
- Get Started Using Spinnaker, fecha de acceso: abril 8, 2025, https://spinnaker.io/docs/guides/user/get-started/
- SpiNNaker Tutorial, fecha de acceso: abril 8, 2025, https://spinnaker-tutorial.readthedocs.io/
- Hands-on SpiNNaker tutorial at the European Institute for Neuromorphic Computing, fecha de acceso: abril 8, 2025, https://www.ebrains.eu/news-and-events/hands-on-spinnaker-tutorial-at-the-european-institute-for-neuromorphic-computing
- Getting started with Armory Spinnaker | by DataCouch – Medium, fecha de acceso: abril 8, 2025, https://datacouch.medium.com/getting-started-with-armory-spinnaker-1421c1749a38
- Spinnaker Version 1.0 Theory Guide | ORNL, fecha de acceso: abril 8, 2025, https://www.ornl.gov/publication/spinnaker-version-10-theory-guide
- SpiNNaker Application Notes – Advanced Processor Technologies (APT) – The University of Manchester, fecha de acceso: abril 8, 2025, https://apt.cs.manchester.ac.uk/projects/SpiNNaker/support/
- Articles and Interviews – Carver Mead – Caltech, fecha de acceso: abril 8, 2025, http://www.carvermead.caltech.edu/articles.html
- Carver Mead Writes the First Book on Neuromorphic Computing – History of Information, fecha de acceso: abril 8, 2025, https://www.historyofinformation.com/detail.php?id=3900
- Carver Mead on Quantum Computing and Neuromorphic Design – HPCwire, fecha de acceso: abril 8, 2025, https://www.hpcwire.com/2013/11/25/carver-mead-quantum-computing-neuromorphic-design/
- The creation of the electronic brain – DCD – Data Center Dynamics, fecha de acceso: abril 8, 2025, https://www.datacenterdynamics.com/en/analysis/creation-of-the-electronic-brain/
- Spinnaker, fecha de acceso: abril 8, 2025, https://spinnaker.io/
- Spinnaker Projects | Project Management Services in East Anglia & London : Spinnaker Projects, fecha de acceso: abril 8, 2025, https://spinnakerprojects.com/
- Spinnaker Watches, fecha de acceso: abril 8, 2025, https://spinnaker-watches.com/
- SpiNNaker—Programming Model – ePrints Soton – University of Southampton, fecha de acceso: abril 8, 2025, https://eprints.soton.ac.uk/369378/1/__userfiles.soton.ac.uk_Users_slb1_mydocuments_TC2329686.pdf
- The basic architecture of a SpiNNaker chip. – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/The-basic-architecture-of-a-SpiNNaker-chip_fig1_308293734
- Network bandwidth (BL) required to support regular operation of… | Download Scientific Diagram – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/Network-bandwidth-BL-required-to-support-regular-operation-of-SpiNNaker-18000-neurons_fig3_261161704
- External memory read bandwidth used by SpiNNaker chip containing… – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/External-memory-read-bandwidth-used-by-SpiNNaker-chip-containing-increasing-numbers-of_fig8_308293734
- SpiNNaker spike packet format (used throughout the machine). – ResearchGate, fecha de acceso: abril 8, 2025, https://www.researchgate.net/figure/SpiNNaker-spike-packet-format-used-throughout-the-machine_fig2_261465042
- sPyNNaker: A Software Package for Running PyNN Simulations on SpiNNaker – Frontiers, fecha de acceso: abril 8, 2025, https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2018.00816/full
- About us – Spinnaker Cementing Solutions, fecha de acceso: abril 8, 2025, https://spinnakeroil.com/about-us/
- Spinnaker Plugin Framework: A Major Milestone | by Ryan Pei, fecha de acceso: abril 8, 2025, https://blog.spinnaker.io/spinnaker-plugin-framework-a-major-milestone-872c379f9737
- A Step-by-Step Guide to ERP Implementation – Spinnaker Support, fecha de acceso: abril 8, 2025, https://www.spinnakersupport.com/blog/2023/09/20/a-step-by-step-guide-to-erp-implementation/
- SPINNAKER dev.indd, fecha de acceso: abril 8, 2025, http://www.spinndev.com/wp-content/uploads/2016/06/SPINNAKER_FALL-14_HIGH-RES.pdf
- Spinnaker Development, fecha de acceso: abril 8, 2025, https://www.spinndev.com/
- Tech Podcast: Carver Mead Says Neuromorphic Efficiency Can Help AI | EE Times Current, fecha de acceso: abril 8, 2025, https://www.youtube.com/watch?v=LJSpyyhG_6g
- Carver Mead Says Neuromorphic Efficiency Can Help AI – EE Times Podcast, fecha de acceso: abril 8, 2025, https://www.eetimes.com/podcasts/carver-mead-says-neuromorphic-efficiency-can-help-ai/
- A Look at TrueNorth – IBM – Neuromorphic Chip, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/neuromorphic-computing/hardware/truenorth-ibm/
- Cognitive computer – Wikipedia, fecha de acceso: abril 8, 2025, https://en.wikipedia.org/wiki/Cognitive_computer
- Deep learning for medical image segmentation – using the IBM TrueNorth Neurosynaptic System – eScholarship.org, fecha de acceso: abril 8, 2025, https://escholarship.org/content/qt3n66b3rv/qt3n66b3rv_noSplash_b548e4970525bc6891de6e4b5a0b2883.pdf
- TrueNorth: Design and Tool Flow of a 65 mW 1 Million Neuron Programmable Neurosynaptic Chip – IBM Research, fecha de acceso: abril 8, 2025, https://research.ibm.com/publications/truenorth-design-and-tool-flow-of-a-65-mw-1-million-neuron-programmable-neurosynaptic-chip
- How neuromorphic computing takes inspiration from our brains – IBM Research, fecha de acceso: abril 8, 2025, https://research.ibm.com/blog/what-is-neuromorphic-or-brain-inspired-computing
- A Look at Loihi 2 – Intel – Open Neuromorphic, fecha de acceso: abril 8, 2025, https://open-neuromorphic.org/neuromorphic-computing/hardware/loihi-2-intel/
- Loihi: A Neuromorphic Manycore Processor with On-Chip Learning, fecha de acceso: abril 8, 2025, https://redwood.berkeley.edu/wp-content/uploads/2021/08/Davies2018.pdf
- Intel’s Silicon Brain System a Blueprint for Future AI Computing Architectures – HPCwire, fecha de acceso: abril 8, 2025, https://www.hpcwire.com/2024/04/24/intels-silicon-brain-system-a-blueprint-for-future-ai-computing-architectures/
- A Brief Introduction to Neuromorphic Processors – Spectra – Mathpix, fecha de acceso: abril 8, 2025, https://spectra.mathpix.com/article/2022.09.00090/a-brief-introduction-to-neuromorphic-processors