-
Notifications
You must be signed in to change notification settings - Fork 12
Update documentation #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
clinssen
wants to merge
10
commits into
nest:master
Choose a base branch
from
clinssen:fix-3.6
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
e45f91c
update readme and installation instructions
a883f9f
update CI script
2ec5972
update readme and installation instructions
fdde64d
update readme
47f7033
apply suggestions from code review
clinssen 1495a95
removed duplicate installation instruction from documentation
352bdf9
Merge remote-tracking branch 'origin/master' into fix-3.6
42ab596
Update doc/synapse_models.rst
clinssen bbb40dc
update documentation
d3ade64
Merge remote-tracking branch 'clinssen/fix-3.6' into fix-3.6
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,27 @@ | ||
NEST Extension Module Example | ||
============================= | ||
|
||
.. attention:: | ||
|
||
This version of the extension module code will not work with NEST | ||
3.6 or earlier. It is adapted to NEST Master as of 15 December 2023. | ||
|
||
This repository contains an example extension module (i.e a "plugin") for | ||
the `NEST Simulator <https://nest-simulator.org>`_. Extension modules allow | ||
users to extend the functionality of NEST without messing with the source | ||
users to extend the functionality of NEST without altering the source | ||
code of NEST itself, thus making pulls from upstream easy, while allowing | ||
to extend NEST and sharing the extensions with other researchers. | ||
|
||
In order to showcase the possibilites of extension modules and their use, | ||
this extension module example contains the following (intentionally simple | ||
and more or less silly) custom example components: | ||
For the full documentation of this feature and further instructions, please see | ||
https://nest-extension-module.readthedocs.io/. | ||
|
||
* A **neuron model** called ``pif_psc_alpha``, which implements a | ||
*non*-leaky integrate-and-fire model with alpha-function shaped | ||
post-synaptic potentials. | ||
* A **synapse model** called ``drop_odd_spike_connection``, which drops | ||
all spikes that arrive at odd-numbered points on the simulation time | ||
grid and delivers only those arriving at even-numbered grid points. | ||
* A **connection builder** called ``step_pattern_builder``, which | ||
creates step-pattern connectivity between the neurons of a source | ||
and a target population. | ||
* A **recording backend** called ``RecordingBackendSocket``, which | ||
streams out the data from spike recorders to an external (or local) | ||
server via UDP. | ||
* A **recording backend** called ``RecordingBackendSoundClick``, which | ||
creates the illusion of a realistic sound from an electrophysiological | ||
spike recording device. | ||
.. attention:: | ||
|
||
For a list of modules developed by other users you can check out the | ||
`list of forks <https://github.com/nest/nest-extension-module/network/members>`_ | ||
of this repository. | ||
Please note that the code in this repository will not work with NEST | ||
3.6 or earlier. It is adapted to NEST Master as of 15 December 2023. | ||
It will in general be kept up-to-date with the git "master" branch on | ||
https://github.com/nest/nest-simulator. For 2.x versions of NEST, see the | ||
extension module example in ``examples/MyModule`` of the source distribution. | ||
|
||
Adapting ``MyModule`` | ||
--------------------- | ||
|
||
If you want to create your own custom extension module using MyModule | ||
as a start, you have to perform the following steps: | ||
License | ||
------- | ||
|
||
1. Replace all occurences of the strings ``MyModule``, ``mymodule`` | ||
and ``my`` by something more descriptive and appropriate for your | ||
module. | ||
2. Remove the example functionality you do not need. | ||
3. Adapt the example functionality you do need to your needs. | ||
NEST is open source software and is licensed under the `GNU General Public | ||
License v2 <https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html>`_ or | ||
later. |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.