forked from OpenMathLib/OpenBLAS
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A64FX: Add support for SVE to SGEMV/DGEMV kernels.
- Loading branch information
iha fujitsu
committed
Jul 16, 2024
1 parent
e1eef56
commit 0985fdc
Showing
3 changed files
with
191 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
include $(KERNELDIR)/KERNEL.ARMV8SVE | ||
|
||
SGEMVNKERNEL = gemv_n_sve.c | ||
DGEMVNKERNEL = gemv_n_sve.c | ||
SGEMVTKERNEL = gemv_t_sve.c | ||
DGEMVTKERNEL = gemv_t_sve.c |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/*************************************************************************** | ||
Copyright (c) 2024, The OpenBLAS Project | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
3. Neither the name of the OpenBLAS project nor the names of | ||
its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written | ||
permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE | ||
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*****************************************************************************/ | ||
|
||
#include <arm_sve.h> | ||
#include "common.h" | ||
|
||
#ifdef DOUBLE | ||
#define SV_COUNT svcntd | ||
#define SV_TYPE svfloat64_t | ||
#define SV_TRUE svptrue_b64 | ||
#define SV_WHILE svwhilelt_b64 | ||
#define SV_DUP svdup_f64 | ||
#else | ||
#define SV_COUNT svcntw | ||
#define SV_TYPE svfloat32_t | ||
#define SV_TRUE svptrue_b32 | ||
#define SV_WHILE svwhilelt_b32 | ||
#define SV_DUP svdup_f32 | ||
#endif | ||
|
||
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer) | ||
{ | ||
BLASLONG i; | ||
BLASLONG ix,iy; | ||
BLASLONG j; | ||
FLOAT *a_ptr; | ||
FLOAT temp; | ||
|
||
ix = 0; | ||
a_ptr = a; | ||
|
||
if (inc_y == 1) { | ||
uint64_t sve_size = SV_COUNT(); | ||
for (j = 0; j < n; j++) { | ||
SV_TYPE temp_vec = SV_DUP(alpha * x[ix]); | ||
i = 0; | ||
svbool_t pg = SV_WHILE(i, m); | ||
while (svptest_any(SV_TRUE(), pg)) { | ||
SV_TYPE a_vec = svld1(pg, a_ptr + i); | ||
SV_TYPE y_vec = svld1(pg, y + i); | ||
y_vec = svmla_x(pg, y_vec, temp_vec, a_vec); | ||
svst1(pg, y + i, y_vec); | ||
i += sve_size; | ||
pg = SV_WHILE(i, m); | ||
} | ||
a_ptr += lda; | ||
ix += inc_x; | ||
} | ||
return(0); | ||
} | ||
|
||
for (j = 0; j < n; j++) { | ||
temp = alpha * x[ix]; | ||
iy = 0; | ||
for (i = 0; i < m; i++) { | ||
y[iy] += temp * a_ptr[i]; | ||
iy += inc_y; | ||
} | ||
a_ptr += lda; | ||
ix += inc_x; | ||
} | ||
return (0); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/*************************************************************************** | ||
Copyright (c) 2024, The OpenBLAS Project | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
3. Neither the name of the OpenBLAS project nor the names of | ||
its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written | ||
permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE | ||
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*****************************************************************************/ | ||
|
||
#include <arm_sve.h> | ||
#include "common.h" | ||
|
||
#ifdef DOUBLE | ||
#define SV_COUNT svcntd | ||
#define SV_TYPE svfloat64_t | ||
#define SV_TRUE svptrue_b64 | ||
#define SV_WHILE svwhilelt_b64 | ||
#define SV_DUP svdup_f64 | ||
#else | ||
#define SV_COUNT svcntw | ||
#define SV_TYPE svfloat32_t | ||
#define SV_TRUE svptrue_b32 | ||
#define SV_WHILE svwhilelt_b32 | ||
#define SV_DUP svdup_f32 | ||
#endif | ||
|
||
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer) | ||
{ | ||
BLASLONG i; | ||
BLASLONG ix,iy; | ||
BLASLONG j; | ||
FLOAT *a_ptr; | ||
FLOAT temp; | ||
|
||
iy = 0; | ||
a_ptr = a; | ||
|
||
if (inc_x == 1) { | ||
uint64_t sve_size = SV_COUNT(); | ||
for (j = 0; j < n; j++) { | ||
SV_TYPE temp_vec = SV_DUP(0.0); | ||
i = 0; | ||
svbool_t pg = SV_WHILE(i, m); | ||
while (svptest_any(SV_TRUE(), pg)) { | ||
SV_TYPE a_vec = svld1(pg, a_ptr + i); | ||
SV_TYPE x_vec = svld1(pg, x + i); | ||
temp_vec = svmla_m(pg, temp_vec, a_vec, x_vec); | ||
i += sve_size; | ||
pg = SV_WHILE(i, m); | ||
} | ||
temp = svaddv(SV_TRUE(), temp_vec); | ||
y[iy] += alpha * temp; | ||
iy += inc_y; | ||
a_ptr += lda; | ||
} | ||
return(0); | ||
} | ||
|
||
for (j = 0; j < n; j++) { | ||
temp = 0.0; | ||
ix = 0; | ||
for (i = 0; i < m; i++) { | ||
temp += a_ptr[i] * x[ix]; | ||
ix += inc_x; | ||
} | ||
y[iy] += alpha * temp; | ||
iy += inc_y; | ||
a_ptr += lda; | ||
} | ||
return (0); | ||
} |