Skip to content

Commit d3a65bd

Browse files
committed
Merge branch 'master' of https://github.com/amd/blis
BLIS release 3.0.1
2 parents 85b4ca5 + 2728fc8 commit d3a65bd

File tree

2 files changed

+2
-53
lines changed

2 files changed

+2
-53
lines changed

frame/base/bli_error.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ BLIS_EXPORT_BLIS void bli_error_checking_level_set( errlev_t new_level );
3939

4040
BLIS_EXPORT_BLIS bool bli_error_checking_is_enabled( void );
4141

42-
void bli_print_msg( char* str, char* file, guint_t line );
43-
BLIS_EXPORT_BLIS void bli_abort( void );
42+
void bli_print_msg( char* str, char* file, guint_t line );
43+
BLIS_EXPORT_BLIS void bli_abort( void );
4444

4545
char* bli_error_string_for_code( gint_t code );
4646

frame/compat/bla_dot.c

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -90,55 +90,6 @@ ftype PASTEF772(ch,blasname,chc) \
9090
}
9191

9292
#ifdef BLIS_ENABLE_BLAS
93-
#ifdef AOCL_F2C
94-
dcomplex zdotc_
95-
(
96-
dcomplex *ret_val,
97-
const f77_int* n,
98-
const dcomplex* x, const f77_int* incx,
99-
const dcomplex* y, const f77_int* incy
100-
)
101-
{
102-
AOCL_DTL_TRACE_ENTRY(AOCL_DTL_LEVEL_TRACE_1);
103-
AOCL_DTL_LOG_DOTV_INPUTS(AOCL_DTL_LEVEL_TRACE_1,'Z', 'C', *n, *incx, *incy);
104-
dim_t n0;
105-
dcomplex* x0;
106-
dcomplex* y0;
107-
inc_t incx0;
108-
inc_t incy0;
109-
dcomplex rho;
110-
111-
/* Initialize BLIS. */
112-
bli_init_auto();
113-
114-
/* Convert/typecast negative values of n to zero. */
115-
bli_convert_blas_dim1( *n, n0 );
116-
117-
/* If the input increments are negative, adjust the pointers so we can
118-
use positive increments instead. */
119-
bli_convert_blas_incv( n0, (dcomplex*)x, *incx, x0, incx0 );
120-
bli_convert_blas_incv( n0, (dcomplex*)y, *incy, y0, incy0 );
121-
122-
/* Call BLIS interface. */
123-
PASTEMAC2(z,dotv,_ex)
124-
(
125-
BLIS_CONJUGATE,
126-
BLIS_NO_CONJUGATE,
127-
n0,
128-
x0, incx0,
129-
y0, incy0,
130-
&rho,
131-
NULL,
132-
NULL
133-
);
134-
135-
AOCL_DTL_TRACE_EXIT(AOCL_DTL_LEVEL_TRACE_1);
136-
/* Finalize BLIS. */
137-
bli_finalize_auto();
138-
*ret_val = rho;
139-
return rho;
140-
}
141-
#endif
14293
#ifdef BLIS_CONFIG_EPYC
14394
float sdot_
14495
(
@@ -556,7 +507,6 @@ scomplex cdotc_
556507

557508
return rho;
558509
}
559-
#ifndef AOCL_F2C
560510
dcomplex zdotc_
561511
(
562512
const f77_int* n,
@@ -639,7 +589,6 @@ dcomplex zdotc_
639589

640590
return rho;
641591
}
642-
#endif
643592
#else
644593
INSERT_GENTFUNCDOTC_BLAS( dot, dotv )
645594
#endif

0 commit comments

Comments
 (0)