Browse Source

Merge pull request #4559 from martin-frbg/issue4551-2

Remove another unwanted early exit in the ThunderX2/NeoN1/AppleM ?NRM2 kernels
tags/v0.3.27
Martin Kroeker GitHub 2 years ago
parent
commit
5802e7a62f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      kernel/arm64/dznrm2_thunderx2t99.c
  2. +1
    -1
      kernel/arm64/scnrm2_thunderx2t99.c

+ 1
- 1
kernel/arm64/dznrm2_thunderx2t99.c View File

@@ -77,7 +77,7 @@ static void nrm2_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x,
" cmp "N", xzr \n"
" ble 9f //nrm2_kernel_L999 \n"
" cmp "INC_X", xzr \n"
" ble 9f //nrm2_kernel_L999 \n"
" beq 9f //nrm2_kernel_L999 \n"

"1: //nrm2_kernel_F_BEGIN: \n"
" mov x6, #0x7FF0000000000000 //+Infinity \n"


+ 1
- 1
kernel/arm64/scnrm2_thunderx2t99.c View File

@@ -229,7 +229,7 @@ static double nrm2_compute(BLASLONG n, FLOAT *x, BLASLONG inc_x)
" cmp "N", xzr \n"
" ble 9f //nrm2_kernel_L999 \n"
" cmp "INC_X", xzr \n"
" ble 9f //nrm2_kernel_L999 \n"
" beq 9f //nrm2_kernel_L999 \n"
" cmp "INC_X", #1 \n"
" bne 5f //nrm2_kernel_S_BEGIN \n"



Loading…
Cancel
Save