Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/amd/blis
Browse files Browse the repository at this point in the history
BLIS release 3.0.1
  • Loading branch information
dzambare committed Jul 6, 2021
2 parents 85b4ca5 + 2728fc8 commit d3a65bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 53 deletions.
4 changes: 2 additions & 2 deletions frame/base/bli_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ BLIS_EXPORT_BLIS void bli_error_checking_level_set( errlev_t new_level );

BLIS_EXPORT_BLIS bool bli_error_checking_is_enabled( void );

void bli_print_msg( char* str, char* file, guint_t line );
BLIS_EXPORT_BLIS void bli_abort( void );
void bli_print_msg( char* str, char* file, guint_t line );
BLIS_EXPORT_BLIS void bli_abort( void );

char* bli_error_string_for_code( gint_t code );

51 changes: 0 additions & 51 deletions frame/compat/bla_dot.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,55 +90,6 @@ ftype PASTEF772(ch,blasname,chc) \
}

#ifdef BLIS_ENABLE_BLAS
#ifdef AOCL_F2C
dcomplex zdotc_
(
dcomplex *ret_val,
const f77_int* n,
const dcomplex* x, const f77_int* incx,
const dcomplex* y, const f77_int* incy
)
{
AOCL_DTL_TRACE_ENTRY(AOCL_DTL_LEVEL_TRACE_1);
AOCL_DTL_LOG_DOTV_INPUTS(AOCL_DTL_LEVEL_TRACE_1,'Z', 'C', *n, *incx, *incy);
dim_t n0;
dcomplex* x0;
dcomplex* y0;
inc_t incx0;
inc_t incy0;
dcomplex rho;

/* Initialize BLIS. */
bli_init_auto();

/* Convert/typecast negative values of n to zero. */
bli_convert_blas_dim1( *n, n0 );

/* If the input increments are negative, adjust the pointers so we can
use positive increments instead. */
bli_convert_blas_incv( n0, (dcomplex*)x, *incx, x0, incx0 );
bli_convert_blas_incv( n0, (dcomplex*)y, *incy, y0, incy0 );

/* Call BLIS interface. */
PASTEMAC2(z,dotv,_ex)
(
BLIS_CONJUGATE,
BLIS_NO_CONJUGATE,
n0,
x0, incx0,
y0, incy0,
&rho,
NULL,
NULL
);

AOCL_DTL_TRACE_EXIT(AOCL_DTL_LEVEL_TRACE_1);
/* Finalize BLIS. */
bli_finalize_auto();
*ret_val = rho;
return rho;
}
#endif
#ifdef BLIS_CONFIG_EPYC
float sdot_
(
Expand Down Expand Up @@ -556,7 +507,6 @@ scomplex cdotc_

return rho;
}
#ifndef AOCL_F2C
dcomplex zdotc_
(
const f77_int* n,
Expand Down Expand Up @@ -639,7 +589,6 @@ dcomplex zdotc_

return rho;
}
#endif
#else
INSERT_GENTFUNCDOTC_BLAS( dot, dotv )
#endif
Expand Down

0 comments on commit d3a65bd

Please sign in to comment.