You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR introduces CI testing for RISC-V RVV (Vector Extension) to validate the correctness of the RVV code across various vector lengths: vlen=128, 256, and 512.
Additionally, it addresses a bug related to "cast increases required alignment of target type".
I recommend additionally setting the rvv_ta_all_1s=on,rvv_ma_all_1s=on flags, to make sure improper use of the agnostic policy produces errors, and if the qemu version available is new enough rvv_vl_half_avl=on to make sure the permitted vsetvl behavior for AVL<VLMAX*2 && AVL>VLMAX is tested properly.
I recommend additionally setting the rvv_ta_all_1s=on,rvv_ma_all_1s=on flags, to make sure improper use of the agnostic policy produces errors, and if the qemu version available is new enough rvv_vl_half_avl=on to make sure the permitted vsetvl behavior for AVL<VLMAX*2 && AVL>VLMAX is tested properly.
Thanks for your suggestions. rvv_ta_all_1s=on,rvv_ma_all_1s=on has been added to the end of the QEMU launch parameters. However, the current QEMU version is 8.2.2, released in 2023, while rvv_vl_half_avl=on was introduced in August 2024, so it is not added for now.
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
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 PR introduces CI testing for RISC-V RVV (Vector Extension) to validate the correctness of the RVV code across various vector lengths: vlen=128, 256, and 512.
Additionally, it addresses a bug related to "cast increases required alignment of target type".