Skip to content

fzenke/auryn

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Auryn logo

Auryn

Auryn is Simulator for recurrent spiking neural networks with synaptic plasticity. It comes with the GPLv3 (please see COPYING).

Quick start

Note, Auryn needs a C++ compiler, the boost libraries (www.boost.org) with MPI support installed. To download and compile the examples under Linux try:

sudo apt-get install cmake git build-essential libboost-all-dev
git clone https://github.com/fzenke/auryn.git && cd auryn/build/release
./bootstrap.sh && make

Run a first network simulation

cd examples
./sim_coba_benchmark --dir .

will run the Vogels Abbott benchmark, a balanced network model with conductance based synapses. Spiking activity is written to files with the extension 'ras'.

If you have gnuplot installed, you can visualize the output of the simulation follows:

echo "set xlabel 'Time [s]'; plot [1:2] 'coba.0.e.ras' with dots lc rgb 'black'" | gnuplot -p

Spike raster plot

Here time in seconds is plotted on the x-asis and neuron id on the y-axis.

Install as a library

To install Auryn as a library run:

sudo make install

which will put it under /usr/local/ or for a local install

make DESTDIR=./your/dir/ install

Citing Auryn

If you find Auryn useful and you use it, please cite:

Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations of spiking neural networks using general-purpose computers. Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076

url: http://journal.frontiersin.org/Journal/10.3389/fninf.2014.00076/abstract

Bibtex:

@article{zenke_limits_2014,
	title = {Limits to high-speed simulations of spiking neural networks using general-purpose computers},
	author = {Zenke, Friedemann and Gerstner, Wulfram},
	journal = {Front Neuroinform},
	year = {2014},
	volume = {8},
	url = {http://journal.frontiersin.org/Journal/10.3389/fninf.2014.00076/abstract},
	doi = {10.3389/fninf.2014.00076}
}

License & Copyright

Copyright 2014-2023 Friedemann Zenke

Auryn is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Auryn is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Auryn. If not, see http://www.gnu.org/licenses/.