Enable jamba and kimi-linear for architecture tests#182
Merged
zhaixuejun1993 merged 4 commits intoMay 25, 2026
Merged
Conversation
24393b2
into
ravi9:dev_backend_openvino
4 of 14 checks passed
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.
This pull request improves the handling of non-contiguous input tensors in split models for the OpenVINO backend and refines error and warning reporting in the decoder logic. The main changes include introducing a utility to reconstruct non-contiguous input tensors as contiguous OpenVINO tensors, updating operator support checks, and cleaning up debug output.
Non-contiguous input tensor handling:
make_contiguous_split_input_tensorto reconstruct non-contiguous split model inputs into contiguous OpenVINO tensors, ensuring correct data layout for inference (ggml/src/ggml-openvino/utils.cpp).convert_ggml_input_to_ovto use the new utility for any non-contiguous tensor in split models, replacing the previous custom logic forPERMUTEops and extending support to other non-contiguous cases (ggml/src/ggml-openvino/utils.cpp).Operator support and validation:
has_non_contiguous_view_inputto check for non-contiguous view inputs, and updated operator support logic to rejectRMS_NORMops with such inputs, preventing unsupported execution paths (ggml/src/ggml-openvino/ggml-openvino.cpp). [1] [2]Error and warning reporting cleanup:
std::coutandOPENVINO_ASSERTstatements incompute_node_dynamic_dimsto reduce console noise and avoid unnecessary assertion failures, making logs cleaner and less intrusive (ggml/src/ggml-openvino/ggml-decoder.cpp). [1] [2] [3] [4]## OverviewAdditional information
Requirements