-
Notifications
You must be signed in to change notification settings - Fork 266
[neuralynx] memory improvements #990
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
Merged
samuelgarcia
merged 19 commits into
NeuralEnsemble:master
from
JuliaSprenger:fix/neuralynx_mem
Oct 28, 2021
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9f70127
[neuralynx] first draft for memory and speed improvements
5d5029f
[neuralynx] temporary cleanup for travis tests
d510545
[neuralynx] fix calculation of last record end time
1141bde
[neuralynx] fix extracted sections to be more similar to original imp…
76cf366
[neuralynx] temporarily add copy module
bbcab79
[neuralynx] first working version
a27e08f
remove outdated code
dd207f0
[neuralynx] add memmap generating function
de3f970
[neuralynx] fix dtype generation for memmaps
6d9c73f
[axona] fix rebase with master and cleanup
29e080a
[neuralynx] cleanup and documentation
0877165
[neuralynx] introduce equality and hashes for ncs section objects
ae86e0e
[neuralynx] improve error messages
025c273
[debug] fix dtype to int64 to avoid windows using int32 by default
60da2f5
[nixiofr] update tests to use unicode labels
6d9333b
Merge branch 'fix/nix_labels' into fix/neuralynx_mem
9a6216b
[neuralynx] cleanup and refactoring
a62d647
[neuralynx] refactoring
d76ea1f
[neuralynx] minor typo
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand this line if you reset
curBlockon next line.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The lines above set the parameters of the previous block before starting a new block. Basically
curBlockis always pointing to the latest block and this is where the condition is met that starts a new Block. So that's whyNcsSectionis called here and curBlock is reassigned.