mirror of https://github.com/xianyi/OpenBLAS.git
Merge pull request #5710 from martin-frbg/issue5708
Work around miscompilation of the ARM64 non-SVE DDOT kernel
This commit is contained in:
commit
0f9f6e4be5
|
|
@ -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__ (
|
||||
|
|
|
|||
Loading…
Reference in New Issue