Add infrastructure for BGEMM#5357
Merged
martin-frbg merged 4 commits intoOpenMathLib:developfrom Jul 9, 2025
Merged
Conversation
Setting up all the infrastructure for BGEMM support in OpenBLAS, hopefully I found all the right places. Derived mostly from the previous work done in OpenMathLib#5287 Co-authored-by: Ye Tao <ye.tao@arm.com>
This fixes the build and tests on `NEOVERSEV1` target, which was failing with specific constants for `SBGEMM` Co-authored-by: Ye Tao <ye.tao@arm.com>
Closed
Contributor
Author
|
@martin-frbg looks like the tests are timing out due to not optimized variant, probably worth disabling them before we burn through a large amount of credits? |
Collaborator
|
Hmm, seems to be something wrong with test_bgemm in the DYNAMIC_ARCH case, sadly I missed that CI timeout... probably something wrong with the change to setparam-ref.c |
Collaborator
|
reproducible on Neoverse N1 (and probably any other armv8 target) as well, so no need to burn credits... test seems to be looping with weird data even at the first step of the test_bgemm loop, while non-dynamic arch runs without issues. |
Mousius
added a commit
to Mousius/OpenBLAS
that referenced
this pull request
Jul 10, 2025
This also improves the testing and generic kernel by re-using the BF16 conversion functions. Built on top of OpenMathLib#5357 and derived from OpenMathLib#5287 Co-authored-by: Ye Tao <ye.tao@arm.com>
Mousius
added a commit
to Mousius/OpenBLAS
that referenced
this pull request
Jul 10, 2025
This also improves the testing and generic kernel by re-using the BF16 conversion functions. Built on top of OpenMathLib#5357 and derived from OpenMathLib#5287 Co-authored-by: Ye Tao <ye.tao@arm.com>
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.
Setting up all the infrastructure for BGEMM support in OpenBLAS, hopefully I found all the right places.
Derived mostly from the previous work done in #5287