50 if ( trans == FLA_NO_TRANSPOSE )
63 float *buff_A = (
float * ) FLA_FLOAT_PTR( A );
64 float *buff_B = (
float * ) FLA_FLOAT_PTR( B );
65 float *buff_C = (
float * ) FLA_FLOAT_PTR( C );
66 float *buff_alpha = (
float * ) FLA_FLOAT_PTR( alpha );
67 float *buff_beta = (
float * ) FLA_FLOAT_PTR( beta );
84 double *buff_A = (
double * ) FLA_DOUBLE_PTR( A );
85 double *buff_B = (
double * ) FLA_DOUBLE_PTR( B );
86 double *buff_C = (
double * ) FLA_DOUBLE_PTR( C );
87 double *buff_alpha = (
double * ) FLA_DOUBLE_PTR( alpha );
88 double *buff_beta = (
double * ) FLA_DOUBLE_PTR( beta );
119 buff_C, rs_C, cs_C );
123 case FLA_DOUBLE_COMPLEX:
139 buff_C, rs_C, cs_C );
void bl1_dsyr2k(uplo1_t uplo, trans1_t trans, int m, int k, double *alpha, double *a, int a_rs, int a_cs, double *b, int b_rs, int b_cs, double *beta, double *c, int c_rs, int c_cs)
Definition: bl1_syr2k.c:239
uplo1_t
Definition: blis_type_defs.h:60
void FLA_Param_map_flame_to_blis_trans(FLA_Trans trans, trans1_t *blis_trans)
Definition: FLA_Param.c:245
FLA_Error FLA_Scal_external(FLA_Obj alpha, FLA_Obj A)
Definition: FLA_Scal_external.c:13
dim_t FLA_Obj_row_stride(FLA_Obj obj)
Definition: FLA_Query.c:167
void bl1_ssyr2k(uplo1_t uplo, trans1_t trans, int m, int k, float *alpha, float *a, int a_rs, int a_cs, float *b, int b_rs, int b_cs, float *beta, float *c, int c_rs, int c_cs)
Definition: bl1_syr2k.c:13
trans1_t
Definition: blis_type_defs.h:52
FLA_Datatype FLA_Obj_datatype(FLA_Obj obj)
Definition: FLA_Query.c:13
void bl1_zsyr2k(uplo1_t uplo, trans1_t trans, int m, int k, dcomplex *alpha, dcomplex *a, int a_rs, int a_cs, dcomplex *b, int b_rs, int b_cs, dcomplex *beta, dcomplex *c, int c_rs, int c_cs)
Definition: bl1_syr2k.c:691
FLA_Bool FLA_Obj_has_zero_dim(FLA_Obj A)
Definition: FLA_Query.c:400
dim_t FLA_Obj_width(FLA_Obj obj)
Definition: FLA_Query.c:123
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
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_length(FLA_Obj obj)
Definition: FLA_Query.c:116
void bl1_csyr2k(uplo1_t uplo, trans1_t trans, int m, int k, scomplex *alpha, scomplex *a, int a_rs, int a_cs, scomplex *b, int b_rs, int b_cs, scomplex *beta, scomplex *c, int c_rs, int c_cs)
Definition: bl1_syr2k.c:465
FLA_Error FLA_Syr2k_check(FLA_Uplo uplo, FLA_Trans trans, FLA_Obj alpha, FLA_Obj A, FLA_Obj B, FLA_Obj beta, FLA_Obj C)
Definition: FLA_Syr2k_check.c:13
Definition: blis_type_defs.h:137