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:
Field G. Van Zee
2018-07-07 16:02:16 -05:00
parent e88aedae73
commit 3ee2bc0f7a
39 changed files with 74 additions and 74 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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