Skip to content
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

Make GetStatus and SetStatus of generated models compatible #367

Open
jougs opened this issue Jun 29, 2017 · 1 comment
Open

Make GetStatus and SetStatus of generated models compatible #367

jougs opened this issue Jun 29, 2017 · 1 comment

Comments

@jougs
Copy link
Contributor

jougs commented Jun 29, 2017

This was formerly known as nest/nest-simulator#248 and before that as nest.trac.577

GetStatus and SetStatus are complementary functions and it is reasonable to expect that the result of GetStatus can be used as input to SetStatus:

nest.SetStatus(nodes, nest.GetStatus(nodes))
nest.SetDefaults(model, nest.GetDefaults(model))

should work. Currently, it does not work (for almost all models). One reason for this is that GetStatus returns a number of read-only values; when these are sent to SetStatus, they are not read out and an UnaccessedDictionaryItem exception is raised.

Note: SetStatus does not provide a full reset!

old_status = nest.GetStatus(nodes)
... do something ...
nest.SetStatus(nodes, old_status)

will not fully reset the nodes, since SetStatus does not change the contents of buffers for incoming spikes and possibly other variables representing the history of the neuron.

@clinssen
Copy link
Contributor

Related to #363: if set_status() fails at any stage, none of the parameters should be updated. This is achieved in NEST neuron models by making a temporary copy of the parameters struct, updating the copy, and only replacing the actual parameters by the copy at the very end, if everything checks out.

Related NEST simulator issue: nest/nest-simulator#249

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants