Skip to content

Commit

Permalink
Merge pull request OpenMathLib#4761 from martin-frbg/m1zdot
Browse files Browse the repository at this point in the history
Add a clobber list to the non-SVE ARM64 ZDOT kernel
  • Loading branch information
martin-frbg committed Jun 20, 2024
2 parents 7e9a4ba + 3ec5992 commit 1ba1b9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kernel/arm64/zdot_thunderx2t99.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,10 @@ static void zdot_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLON
: "cc",
"memory",
"x0", "x1", "x2", "x3", "x4", "x5",
"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7"
"d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7",
"v16", "v17", "v18", "v19", "v20", "v21", "v22",
"v23", "v24", "v25", "v26", "v27", "v28", "v29",
"v30", "v31"
);

cf=OPENBLAS_MAKE_COMPLEX_FLOAT(dotr, doti);
Expand Down

0 comments on commit 1ba1b9c

Please sign in to comment.