Beispiel #1
0
void bli_thrcomm_free( rntm_t* rntm, thrcomm_t* comm )
{
	if ( comm == NULL ) return;

	bli_thrcomm_cleanup( comm );

	#ifdef BLIS_ENABLE_MEM_TRACING
	printf( "bli_thrcomm_free(): " );
	#endif

	bli_sba_release( rntm, comm );
}
void bli_thrcomm_free( thrcomm_t* communicator )
{
	if ( communicator == NULL ) return;
	bli_thrcomm_cleanup( communicator );
	bli_free_intl( communicator );
}