Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/base/flamec/blis/2/bl1_gemv.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ void bl1_dgemv_blas( trans1_t transa, fla_dim_t m, fla_dim_t n, double* alpha, d
*beta,
y, incy );
#else
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
/* Use direct single threaded BLIS kernel */
aocl_fla_init();
if ( FLA_IS_MIN_ARCH_ID( FLA_ARCH_AVX512 ) && incx > 0 && incy > 0 )
Expand Down
4 changes: 2 additions & 2 deletions src/map/lapack2flamec/f2c/c/dlarf.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void aocl_lapack_dlarf(char *side, aocl_int64_t *m, aocl_int64_t *n, doublereal
{
/* Process in a single call */
/* w(1:lastc,1) := C(1:lastv,1:lastc)**T * v(1:lastv,1) */
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512) && *incv > 0)
{
/* Use direct single threaded BLIS kernel */
Expand Down Expand Up @@ -386,7 +386,7 @@ void aocl_lapack_dlarf(char *side, aocl_int64_t *m, aocl_int64_t *n, doublereal
else
{
/* w(1:lastc,1) := C(1:lastc,1:lastv) * v(1:lastv,1) */
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
aocl_fla_init();
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512) && *incv > 0)
{
Expand Down
8 changes: 4 additions & 4 deletions src/map/lapack2flamec/f2c/c/dlarft.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ void aocl_lapack_dlarft(char *direct, char *storev, aocl_int64_t *n, aocl_int64_
i__2 = j - i__;
i__3 = i__ - 1;
d__1 = -tau[i__];
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512))
{
bli_dgemv_t_zen4_int(BLIS_CONJUGATE, BLIS_NO_CONJUGATE, i__2, i__3,
Expand Down Expand Up @@ -320,7 +320,7 @@ void aocl_lapack_dlarft(char *direct, char *storev, aocl_int64_t *n, aocl_int64_
i__2 = i__ - 1;
i__3 = j - i__;
d__1 = -tau[i__];
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512) && *ldv > 0)
{
bli_dgemv_n_zen4_int_40x2_st(BLIS_NO_TRANSPOSE, BLIS_NO_CONJUGATE, i__2,
Expand Down Expand Up @@ -393,7 +393,7 @@ void aocl_lapack_dlarft(char *direct, char *storev, aocl_int64_t *n, aocl_int64_
i__1 = *n - *k + i__ - j;
i__2 = *k - i__;
d__1 = -tau[i__];
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512))
{
bli_dgemv_t_zen4_int(BLIS_CONJUGATE, BLIS_NO_CONJUGATE, i__1, i__2,
Expand Down Expand Up @@ -430,7 +430,7 @@ void aocl_lapack_dlarft(char *direct, char *storev, aocl_int64_t *n, aocl_int64_
i__1 = *k - i__;
i__2 = *n - *k + i__ - j;
d__1 = -tau[i__];
#if FLA_ENABLE_AOCL_BLAS
#if FLA_ENABLE_AOCL_BLAS && defined(BLIS_KERNELS_ZEN4)
if(FLA_IS_MIN_ARCH_ID(FLA_ARCH_AVX512) && *ldv > 0)
{
bli_dgemv_n_zen4_int_40x2_st(BLIS_NO_TRANSPOSE, BLIS_NO_CONJUGATE, i__1,
Expand Down