mirror of
https://github.com/amd/blis.git
synced 2026-05-14 03:02:08 +00:00
Add symbol export macro for all functions (#302)
* initial export of blis functions * Regenerate def file for master * restore bli_extern_defs exporting for now
This commit is contained in:
committed by
Devrajegowda, Kiran
parent
56286b4729
commit
e5fc00a2e7
@@ -85,28 +85,28 @@ static void bli_array_set_elem_size( siz_t elem_size, array_t* array ) \
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
void bli_array_init
|
||||
BLIS_EXPORT_BLIS void bli_array_init
|
||||
(
|
||||
const siz_t num_elem,
|
||||
const siz_t elem_size,
|
||||
array_t* restrict array
|
||||
);
|
||||
void bli_array_resize
|
||||
BLIS_EXPORT_BLIS void bli_array_resize
|
||||
(
|
||||
const siz_t num_elem_new,
|
||||
array_t* restrict array
|
||||
);
|
||||
void bli_array_finalize
|
||||
BLIS_EXPORT_BLIS void bli_array_finalize
|
||||
(
|
||||
array_t* restrict array
|
||||
);
|
||||
|
||||
void* bli_array_elem
|
||||
BLIS_EXPORT_BLIS void* bli_array_elem
|
||||
(
|
||||
const siz_t index,
|
||||
array_t* restrict array
|
||||
);
|
||||
void bli_array_set_elem
|
||||
BLIS_EXPORT_BLIS void bli_array_set_elem
|
||||
(
|
||||
void* restrict elem,
|
||||
const siz_t index,
|
||||
|
||||
Reference in New Issue
Block a user