Merge pull request #5710 from martin-frbg/issue5708

Work around miscompilation of the ARM64 non-SVE DDOT kernel
This commit is contained in:
Martin Kroeker 2026-03-27 22:09:08 +01:00 committed by GitHub
commit 0f9f6e4be5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -262,7 +262,10 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
static RETURN_TYPE dot_kernel_asimd(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
{
volatile RETURN_TYPE dot = 0.0;
#ifndef DOUBLE
volatile
#endif
RETURN_TYPE dot = 0.0;
BLASLONG j = 0;
__asm__ __volatile__ (