mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Renamed various datatype-related macros/functions.
Details: - Renamed the following macros in bli_obj_macro_defs.h and bli_param_macro_defs.h: - bli_obj_datatype() -> bli_obj_dt() - bli_obj_target_datatype() -> bli_obj_target_dt() - bli_obj_execution_datatype() -> bli_obj_exec_dt() - bli_obj_set_datatype() -> bli_obj_set_dt() - bli_obj_set_target_datatype() -> bli_obj_set_target_dt() - bli_obj_set_execution_datatype() -> bli_obj_set_exec_dt() - bli_obj_datatype_proj_to_real() -> bli_obj_dt_proj_to_real() - bli_obj_datatype_proj_to_complex() -> bli_obj_dt_proj_to_complex() - bli_datatype_proj_to_real() -> bli_dt_proj_to_real() - bli_datatype_proj_to_complex() -> bli_dt_proj_to_complex() - Renamed the following functions in bli_obj.c: - bli_datatype_size() -> bli_dt_size() - bli_datatype_string() -> bli_dt_string() - bli_datatype_union() -> bli_dt_union() - Removed a pair of old level-1f penryn intrinsics kernels that were no longer in use.
This commit is contained in:
@@ -57,7 +57,7 @@ void PASTEMAC(opname,EX_SUF) \
|
||||
\
|
||||
BLIS_OAPI_CNTX_DECL \
|
||||
\
|
||||
num_t dt = bli_obj_datatype( *x ); \
|
||||
num_t dt = bli_obj_dt( *x ); \
|
||||
\
|
||||
conj_t conjx = bli_obj_conj_status( *x ); \
|
||||
conj_t conjy = bli_obj_conj_status( *y ); \
|
||||
@@ -123,7 +123,7 @@ void PASTEMAC(opname,EX_SUF) \
|
||||
\
|
||||
BLIS_OAPI_CNTX_DECL \
|
||||
\
|
||||
num_t dt = bli_obj_datatype( *x ); \
|
||||
num_t dt = bli_obj_dt( *x ); \
|
||||
\
|
||||
conj_t conja = bli_obj_conj_status( *a ); \
|
||||
conj_t conjx = bli_obj_conj_status( *x ); \
|
||||
@@ -191,7 +191,7 @@ void PASTEMAC(opname,EX_SUF) \
|
||||
\
|
||||
BLIS_OAPI_CNTX_DECL \
|
||||
\
|
||||
num_t dt = bli_obj_datatype( *x ); \
|
||||
num_t dt = bli_obj_dt( *x ); \
|
||||
\
|
||||
conj_t conjxt = bli_obj_conj_status( *xt ); \
|
||||
conj_t conjx = bli_obj_conj_status( *x ); \
|
||||
@@ -259,7 +259,7 @@ void PASTEMAC(opname,EX_SUF) \
|
||||
\
|
||||
BLIS_OAPI_CNTX_DECL \
|
||||
\
|
||||
num_t dt = bli_obj_datatype( *x ); \
|
||||
num_t dt = bli_obj_dt( *x ); \
|
||||
\
|
||||
conj_t conjat = bli_obj_conj_status( *at ); \
|
||||
conj_t conja = bli_obj_conj_status( *a ); \
|
||||
@@ -342,7 +342,7 @@ void PASTEMAC(opname,EX_SUF) \
|
||||
\
|
||||
BLIS_OAPI_CNTX_DECL \
|
||||
\
|
||||
num_t dt = bli_obj_datatype( *x ); \
|
||||
num_t dt = bli_obj_dt( *x ); \
|
||||
\
|
||||
conj_t conjat = bli_obj_conj_status( *a ); \
|
||||
conj_t conjx = bli_obj_conj_status( *x ); \
|
||||
|
||||
Reference in New Issue
Block a user