Renamed membrk files/vars/functions to pba.

Details:
- Renamed the files, variables, and functions relating to the packing
  block allocator from its legacy name (membrk) to its current name
  (pba). This more clearly contrasts the packing block allocator with
  the small block allocator (sba).
- Fixed a typo in bli_pack_set_pack_b(), defined in bli_pack.c, that
  caused the function to erroneously change the value of the pack_a
  field of the global rntm_t instead of the pack_b field. (Apparently
  nobody has used this API yet.)
- Comment updates.
This commit is contained in:
Field G. Van Zee
2021-03-27 17:22:14 -05:00
parent 36cb4116d1
commit 3a6f41afb8
24 changed files with 210 additions and 197 deletions

View File

@@ -593,10 +593,6 @@ void GENBARNAME(cntx_init)
bli_cntx_set_schema_a_block( BLIS_PACKED_ROW_PANELS, cntx );
bli_cntx_set_schema_b_panel( BLIS_PACKED_COL_PANELS, cntx );
bli_cntx_set_schema_c_panel( BLIS_NOT_PACKED, cntx );
//bli_cntx_set_anti_pref( FALSE, cntx );
//bli_cntx_set_membrk( bli_membrk_query(), cntx );
}
// -----------------------------------------------------------------------------