mirror of
https://github.com/amd/blis.git
synced 2026-05-11 01:30:00 +00:00
Renamed files that distinguish basic/expert APIs.
Details:
- Renamed various files that were previously named according to a
"with context" or "without context" convention. For example, the
following files in frame/3 were renamed:
frame/3/bli_l3_oapi_woc.c -> frame/3/bli_l3_oapi_ba.c
frame/3/bli_l3_oapi_wc.c -> frame/3/bli_l3_oapi_ex.c
frame/3/bli_l3_tapi_woc.c -> frame/3/bli_l3_tapi_ba.c
frame/3/bli_l3_tapi_wc.c -> frame/3/bli_l3_tapi_ex.c
Here, the "ba" is for "basic" and "ex" is for "expert". This new
naming scheme will make more sense especially if/when additional
expert parameters are added to the expert APIs (typed and object).
This commit is contained in:
@@ -37,15 +37,15 @@
|
||||
#include "bli_l1f_ft.h"
|
||||
|
||||
// Prototype object APIs (expert and non-expert).
|
||||
#include "bli_oapi_w_cntx.h"
|
||||
#include "bli_oapi_ex.h"
|
||||
#include "bli_l1f_oapi.h"
|
||||
#include "bli_oapi_wo_cntx.h"
|
||||
#include "bli_oapi_ba.h"
|
||||
#include "bli_l1f_oapi.h"
|
||||
|
||||
// Prototype typed APIs (expert and non-expert).
|
||||
#include "bli_tapi_w_cntx.h"
|
||||
#include "bli_tapi_ex.h"
|
||||
#include "bli_l1f_tapi.h"
|
||||
#include "bli_tapi_wo_cntx.h"
|
||||
#include "bli_tapi_ba.h"
|
||||
#include "bli_l1f_tapi.h"
|
||||
|
||||
// Reference kernel headers
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
// Include cpp macros that instantiate the API definition templates as
|
||||
// omitting expert parameters.
|
||||
#include "bli_oapi_wo_cntx.h"
|
||||
#include "bli_oapi_ba.h"
|
||||
|
||||
// Define the macro protecting the object API definitions.
|
||||
#define BLIS_ENABLE_OAPI
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
// Include cpp macros that instantiate the API definition templates as
|
||||
// having expert parameters.
|
||||
#include "bli_oapi_w_cntx.h"
|
||||
#include "bli_oapi_ex.h"
|
||||
|
||||
// Define the macro protecting the object API definitions.
|
||||
#define BLIS_ENABLE_OAPI
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
// Include cpp macros that instantiate the API definition templates as
|
||||
// omitting expert parameters.
|
||||
#include "bli_tapi_wo_cntx.h"
|
||||
#include "bli_tapi_ba.h"
|
||||
|
||||
// Define the macro protecting the typed API definitions.
|
||||
#define BLIS_ENABLE_TAPI
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
// Include cpp macros that instantiate the API definition templates as
|
||||
// having expert parameters.
|
||||
#include "bli_tapi_w_cntx.h"
|
||||
#include "bli_tapi_ex.h"
|
||||
|
||||
// Define the macro protecting the typed API definitions.
|
||||
#define BLIS_ENABLE_TAPI
|
||||
Reference in New Issue
Block a user