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

Is it possible using same file format as UCR Suite? #1

Open
StevenLOL opened this issue Sep 6, 2014 · 1 comment
Open

Is it possible using same file format as UCR Suite? #1

StevenLOL opened this issue Sep 6, 2014 · 1 comment

Comments

@StevenLOL
Copy link

These are not issues just some suggestions:

  1. Is it possible using same data file format as UCR Suite?
  2. Query can have larger size >= 4096 ?
@gravitino
Copy link
Owner

  1. Yes. Nevertheless, the parsing of 1GB floating point values from plain text files is more expensive than the actual computation of subsequence Euclidean Distance. Same goes for efficiently lower-bounded DTW.

  2. Yes and No. The length limitation is caused by the limitation of constant memory on the GPU. Writing the query and warping envelope to (slower) global memory will fix that. Nevertheless, assuming 10% relative warping window for the Sakoe-Chiba constraint, query sizes above 10K will most likely not be possible due to limitations of shared memory. Moving the penalty matrix to (slow) global memory would fix that at the expense of speed.

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

No branches or pull requests

2 participants