Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/genn/genn/neuronGroup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,10 @@ boost::uuids::detail::sha1::digest_type NeuronGroup::getInitHashDigest() const
// **NOTE** nothing else is required as logic of initialisation only depends on number of delay slots
Utils::updateHash(getFusedSpike().size(), hash);

// Update hash with number of fused spike event conditions
// **NOTE** nothing else is required as logic of initialisation only depends on number of delay slots
Utils::updateHash(getFusedSpikeEvent().size(), hash);

// Update hash with hash list built from current sources
updateHashList(this, getCurrentSources(), hash, &CurrentSourceInternal::getInitHashDigest);

Expand Down