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

Lazy Array implementation #63

Open
1 of 14 tasks
haberdashPI opened this issue Feb 10, 2021 · 0 comments
Open
1 of 14 tasks

Lazy Array implementation #63

haberdashPI opened this issue Feb 10, 2021 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@haberdashPI
Copy link
Owner

haberdashPI commented Feb 10, 2021

Trying out an implementation approach that uses lazy arrays, and requires
all signals to be arrays.

Benefits:

  1. simplify the implementaiton
  2. Speed it up: arrays are really fast in julia and my streaming chunks turned out to be slow for some use cases; the use of Mmap'ed arrays would allow handling use-cases with
    large data. The only thing this prevents is streaming data, and that isn't a great use of julia right now anyways

Steps to implement

  • basic operations draft implementation (all but reformatting and ramps)
  • test basic operations
    • types
      • numbers
      • arrays
      • functions
    • operations
      • cutting
      • appending
      • padding
      • filters
      • mapping
  • test the speed of the implementation
  • then add more advanced features
@haberdashPI haberdashPI added the enhancement New feature or request label Feb 10, 2021
@haberdashPI haberdashPI self-assigned this Feb 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant