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

Fix DTW assert #2299

Merged
merged 1 commit into from
Jul 15, 2024
Merged

Fix DTW assert #2299

merged 1 commit into from
Jul 15, 2024

Conversation

arizhih
Copy link
Contributor

@arizhih arizhih commented Jul 12, 2024

This commit e30c679 contains a lot of places in ggml.c where following code

assert(params->ith == 0);

was replaced by

if (params->ith != 0) {
    return;
}

As far as I understand from the code, DTW requires the same. Right now on the master with DTW enabled I'm getting error about wrong thread count and thread number.

@ggerganov ggerganov merged commit 7ae885c into ggerganov:master Jul 15, 2024
iThalay pushed a commit to iThalay/whisper.cpp that referenced this pull request Sep 23, 2024
iThalay pushed a commit to iThalay/whisper.cpp that referenced this pull request Sep 23, 2024
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

Successfully merging this pull request may close these issues.

2 participants