mirror of
https://github.com/amd/blis.git
synced 2026-05-11 01:30:00 +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:
@@ -52,7 +52,7 @@ void PASTEMAC(opname,imeth) \
|
||||
bli_init_once(); \
|
||||
\
|
||||
ind_t ind = PASTEMAC0(imeth); \
|
||||
num_t dt = bli_obj_datatype( *c ); \
|
||||
num_t dt = bli_obj_dt( *c ); \
|
||||
obj_t* beta_use = beta; \
|
||||
\
|
||||
dim_t i; \
|
||||
@@ -147,7 +147,7 @@ void PASTEMAC(opname,imeth) \
|
||||
bli_init_once(); \
|
||||
\
|
||||
ind_t ind = PASTEMAC0(imeth); \
|
||||
num_t dt = bli_obj_datatype( *c ); \
|
||||
num_t dt = bli_obj_dt( *c ); \
|
||||
obj_t* beta_use = beta; \
|
||||
\
|
||||
dim_t i; \
|
||||
@@ -225,7 +225,7 @@ void PASTEMAC(opname,imeth) \
|
||||
bli_init_once(); \
|
||||
\
|
||||
ind_t ind = PASTEMAC0(imeth); \
|
||||
num_t dt = bli_obj_datatype( *c ); \
|
||||
num_t dt = bli_obj_dt( *c ); \
|
||||
obj_t* beta_use = beta; \
|
||||
\
|
||||
dim_t i; \
|
||||
@@ -295,7 +295,7 @@ void PASTEMAC(opname,imeth) \
|
||||
bli_init_once(); \
|
||||
\
|
||||
ind_t ind = PASTEMAC0(imeth); \
|
||||
num_t dt = bli_obj_datatype( *b ); \
|
||||
num_t dt = bli_obj_dt( *b ); \
|
||||
\
|
||||
dim_t i; \
|
||||
\
|
||||
@@ -352,7 +352,7 @@ void PASTEMAC(opname,imeth) \
|
||||
bli_init_once(); \
|
||||
\
|
||||
ind_t ind = PASTEMAC0(imeth); \
|
||||
num_t dt = bli_obj_datatype( *b ); \
|
||||
num_t dt = bli_obj_dt( *b ); \
|
||||
\
|
||||
/* If the objects are in the real domain, execute the native
|
||||
implementation. */ \
|
||||
|
||||
Reference in New Issue
Block a user