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:
Field G. Van Zee
2018-04-30 14:57:33 -05:00
parent 01c4173238
commit 75d0d1057d
132 changed files with 331 additions and 1094 deletions

View File

@@ -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 ); \