Skip to content

Commit 71e4db7

Browse files
committed
Adding in Nengo
1 parent 5c60796 commit 71e4db7

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CONTRIBUTORS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
**We thank the following for contributing to this tutorial**
1+
**We thank the following people for contributing to this tutorial**
22

33
Padraig Gleeson
4-
54
Andrew Davison
5+
Chris Eliasmith
6+
Diek W. Wheeler
7+
8+
Binary file not shown.
Binary file not shown.

Part_1_Resources_for_computational_modellers/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,14 @@ identified over one hundred different neuron types.
5454

5555
#### MOOSE
5656

57-
#### Nengo
57+
#### [Nengo](http://nengo.github.io/)
58+
59+
Nengo is a graphical and scripting based software package for simulating large-scale
60+
spiking and non-spiking neural systems. It supports CPUs, GPUs (single and multi),
61+
MPI, and neuromorphic chips.
62+
63+
[Slides](https://github.com/NeuralEnsemble/NeuroinformaticsTutorial/blob/master/Part_1_Resources_for_computational_modellers/4_Simulation_environments/Nengo.pptx)
64+
5865

5966
#### The Virtual Brain
6067

@@ -66,7 +73,13 @@ identified over one hundred different neuron types.
6673

6774
#### OSB
6875

69-
#### NeuroML
76+
#### [NeuroML](http://www.neuroml.org)
77+
78+
NeuroML is a language for expressing models in computational neuroscience in a
79+
simulator independent, standardised format. It can express models from integrate
80+
and fire cells to complex networks of multicompartmental neurons.
81+
82+
[Slides](https://github.com/NeuralEnsemble/NeuroinformaticsTutorial/blob/master/Part_1_Resources_for_computational_modellers/5_Model_sharing/NeuroML.pptx)
7083

7184
#### PyNN
7285

Part_1_Resources_for_computational_modellers/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
for f in os.listdir(section):
1414
fpath = section+'/'+f
15-
if os.path.isfile(fpath) and fpath.endswith('pptx'):
15+
if os.path.isfile(fpath) and fpath.endswith('pptx') and not f=='Template.pptx':
1616
print("Incorporating: %s"%fpath)
1717
call(["libreoffice", "--headless", "--invisible", "--convert-to", "pdf", fpath])
1818

0 commit comments

Comments
 (0)