Skip to main content

sc_neurocore_engine/neurons/
hardware.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Commercial license available
3// © Concepts 1996–2026 Miroslav Šotek. All rights reserved.
4// © Code 2020–2026 Miroslav Šotek. All rights reserved.
5// ORCID: 0009-0009-3560-0851
6// Contact: www.anulum.li | protoscience@anulum.li
7// SC-NeuroCore — Hardware Neuron Emulator Facade
8
9//! Stable exports for hardware neuromorphic chip emulators.
10
11mod akida;
12mod brainscales_adex;
13mod dpi_neuron;
14mod loihi2;
15mod loihi_cuba;
16mod neurogrid;
17mod spinnaker2;
18mod spinnaker_lif;
19mod truenorth;
20
21pub use akida::AkidaNeuron;
22pub use brainscales_adex::BrainScaleSAdExNeuron;
23pub use dpi_neuron::DPINeuron;
24pub use loihi2::Loihi2Neuron;
25pub use loihi_cuba::LoihiCUBANeuron;
26pub use neurogrid::NeuroGridNeuron;
27pub use spinnaker2::SpiNNaker2Neuron;
28pub use spinnaker_lif::SpiNNakerLIFNeuron;
29pub use truenorth::TrueNorthNeuron;