Enable Parakeet V3 download and full Intel NPU execution - #13
Merged
Alex-Wengg merged 1 commit intoJul 23, 2026
Merged
Conversation
Alex-Wengg
approved these changes
Jul 23, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #12
Summary
Enable Parakeet V3 download and full Intel NPU execution by fixing two blockers:
PARAKEET_V3at the publishedFluidInference/parakeet-tdt-0.6b-v3-ovexport instead of the missing1.1b-v3-ovrepository.LogSoftmaxaxes before compiling OpenVINO IR models on Intel NPU.The joint graph uses
axis=-1on a static rank-4 tensor. This is valid OpenVINO and semantically identical toaxis=3, but Intel's NPU compiler fails inAlignDimensionsForDPU, causing Eddy to run the joint component through its CPU fallback.Implementation
NPU.LogSoftmaxnodes with a negative axis and static input rank.This follows the existing in-memory NPU graph-rewrite precedent in the Nemotron backend while keeping the workaround narrowly scoped to the affected operator and device.
Reproduction before the fix
Environment:
FluidInference/parakeet-tdt-0.6b-v3-ovThe failing node is opset5
LogSoftmaxlogits, input shape[1, 1, 1, 8198],axis=-1.Validation
openvino_utils_testwith five hardware-independent cases:-1 -> 3with CPU output equivalence,-4 -> 0, positive-axis no-op, dynamic-rank no-op, and non-LogSoftmax no-op.Scope
This does not modify model files on disk or broaden NPU fallback behavior. The graph workaround only canonicalizes a semantically equivalent axis representation before NPU compilation.