mirror of
https://github.com/amd/blis.git
synced 2026-05-13 02:25:39 +00:00
Multiple trace levels will allow user to set the nested call levels up to which the traces to be limited. It will also reduce file size requirements. Also optimized auto trace output to reduce file size by removing thread ID's from individual lines. AMD Internal: [CPUPL-806] Change-Id: I28e08a5bdf1b147469d8ce290ff7cde7f74481bd
117 lines
3.5 KiB
C
117 lines
3.5 KiB
C
/*
|
|
|
|
BLIS
|
|
An object-based framework for developing high-performance BLAS-like
|
|
libraries.
|
|
|
|
Copyright (C) 2014, The University of Texas at Austin
|
|
Copyright (C) 2018 - 2019, Advanced Micro Devices, Inc.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
- Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
- Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
- Neither the name(s) of the copyright holder(s) nor the names of its
|
|
contributors may be used to endorse or promote products derived
|
|
from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#include "blis.h"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void bli_init( void )
|
|
{
|
|
bli_init_once();
|
|
}
|
|
|
|
void bli_finalize( void )
|
|
{
|
|
bli_finalize_once();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void bli_init_auto( void )
|
|
{
|
|
bli_init_once();
|
|
}
|
|
|
|
void bli_finalize_auto( void )
|
|
{
|
|
#ifdef BLIS_ENABLE_STAY_AUTO_INITIALIZED
|
|
|
|
// If BLIS was configured to stay initialized after being automatically
|
|
// initialized, we honor the configuration request and do nothing.
|
|
// BLIS will remain initialized unless and until the user explicitly
|
|
// calls bli_finalize().
|
|
|
|
#else
|
|
|
|
bli_finalize_once();
|
|
|
|
#endif
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void bli_init_apis( void )
|
|
{
|
|
/* Initialzie DTL Libary with trace level set by the user */
|
|
AOCL_DTL_INITIALIZE(AOCL_DTL_TRACE_LEVEL);
|
|
// Initialize various sub-APIs.
|
|
bli_gks_init();
|
|
bli_ind_init();
|
|
bli_thread_init();
|
|
bli_pack_init();
|
|
bli_memsys_init();
|
|
}
|
|
|
|
void bli_finalize_apis( void )
|
|
{
|
|
// Finalize various sub-APIs.
|
|
bli_memsys_finalize();
|
|
bli_pack_finalize();
|
|
bli_thread_finalize();
|
|
bli_ind_finalize();
|
|
bli_gks_finalize();
|
|
AOCL_DTL_UNINITIALIZE();
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// A pthread_once_t variable is a pthread structure used in pthread_once().
|
|
// pthread_once() is guaranteed to execute exactly once among all threads that
|
|
// pass in this control object. Thus, we need one for initialization and a
|
|
// separate one for finalization.
|
|
static bli_pthread_once_t once_init = BLIS_PTHREAD_ONCE_INIT;
|
|
static bli_pthread_once_t once_finalize = BLIS_PTHREAD_ONCE_INIT;
|
|
|
|
void bli_init_once( void )
|
|
{
|
|
bli_pthread_once( &once_init, bli_init_apis );
|
|
}
|
|
|
|
void bli_finalize_once( void )
|
|
{
|
|
bli_pthread_once( &once_finalize, bli_finalize_apis );
|
|
}
|
|
|