43 float *buff_A = (
float * ) FLA_FLOAT_PTR( A );
44 float *buff_x = (
float * ) FLA_FLOAT_PTR( x );
45 float *buff_y = (
float * ) FLA_FLOAT_PTR( y );
46 float *buff_alpha = (
float * ) FLA_FLOAT_PTR( alpha );
47 float *buff_beta = (
float * ) FLA_FLOAT_PTR( beta );
62 double *buff_A = (
double * ) FLA_DOUBLE_PTR( A );
63 double *buff_x = (
double * ) FLA_DOUBLE_PTR( x );
64 double *buff_y = (
double * ) FLA_DOUBLE_PTR( y );
65 double *buff_alpha = (
double * ) FLA_DOUBLE_PTR( alpha );
66 double *buff_beta = (
double * ) FLA_DOUBLE_PTR( beta );
98 case FLA_DOUBLE_COMPLEX:
uplo1_t
Definition: blis_type_defs.h:60
dim_t FLA_Obj_row_stride(FLA_Obj obj)
Definition: FLA_Query.c:167
void bl1_ssymv(uplo1_t uplo, int m, float *alpha, float *a, int a_rs, int a_cs, float *x, int incx, float *beta, float *y, int incy)
Definition: bl1_symv.c:13
FLA_Datatype FLA_Obj_datatype(FLA_Obj obj)
Definition: FLA_Query.c:13
FLA_Bool FLA_Obj_has_zero_dim(FLA_Obj A)
Definition: FLA_Query.c:400
void FLA_Param_map_flame_to_blis_uplo(FLA_Uplo uplo, uplo1_t *blis_uplo)
Definition: FLA_Param.c:285
Definition: blis_type_defs.h:132
void bl1_csymv(uplo1_t uplo, int m, scomplex *alpha, scomplex *a, int a_rs, int a_cs, scomplex *x, int incx, scomplex *beta, scomplex *y, int incy)
Definition: bl1_symv.c:99
void bl1_zsymv(uplo1_t uplo, int m, dcomplex *alpha, dcomplex *a, int a_rs, int a_cs, dcomplex *x, int incx, dcomplex *beta, dcomplex *y, int incy)
Definition: bl1_symv.c:142
void bl1_dsymv(uplo1_t uplo, int m, double *alpha, double *a, int a_rs, int a_cs, double *x, int incx, double *beta, double *y, int incy)
Definition: bl1_symv.c:56
unsigned int FLA_Check_error_level(void)
Definition: FLA_Check.c:18
int FLA_Datatype
Definition: FLA_type_defs.h:49
dim_t FLA_Obj_col_stride(FLA_Obj obj)
Definition: FLA_Query.c:174
dim_t FLA_Obj_vector_inc(FLA_Obj obj)
Definition: FLA_Query.c:145
dim_t FLA_Obj_length(FLA_Obj obj)
Definition: FLA_Query.c:116
FLA_Error FLA_Symv_check(FLA_Uplo uplo, FLA_Obj alpha, FLA_Obj A, FLA_Obj x, FLA_Obj beta, FLA_Obj y)
Definition: FLA_Symv_check.c:13
Definition: blis_type_defs.h:137