mirror of
https://github.com/amd/blis.git
synced 2026-04-30 20:41:13 +00:00
Details: - Converted most C preprocessor macros in bli_param_macro_defs.h and bli_obj_macro_defs.h to static functions. - Reshuffled some functions/macros to bli_misc_macro_defs.h and also between bli_param_macro_defs.h and bli_obj_macro_defs.h. - Changed obj_t-initializing macros in bli_type_defs.h to static functions. - Removed some old references to BLIS_TWO and BLIS_MINUS_TWO from bli_constants.h. - Whitespace changes in select files (four spaces to single tab).
90 lines
2.8 KiB
C
90 lines
2.8 KiB
C
/*
|
|
|
|
BLIS
|
|
An object-based framework for developing high-performance BLAS-like
|
|
libraries.
|
|
|
|
Copyright (C) 2014, The University of Texas at Austin
|
|
|
|
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 of The University of Texas at Austin 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"
|
|
|
|
#undef GENFRONT
|
|
#define GENFRONT( opname ) \
|
|
\
|
|
void PASTEMAC0(opname) \
|
|
( \
|
|
obj_t* alpha, \
|
|
obj_t* a, \
|
|
obj_t* x, \
|
|
cntx_t* cntx, \
|
|
cntl_t* cntl \
|
|
) \
|
|
{ \
|
|
bli_init_once(); \
|
|
\
|
|
num_t dt = bli_obj_dt( a ); \
|
|
\
|
|
uplo_t uploa = bli_obj_uplo( a ); \
|
|
trans_t transa = bli_obj_conjtrans_status( a ); \
|
|
diag_t diaga = bli_obj_diag( a ); \
|
|
\
|
|
dim_t m = bli_obj_length( a ); \
|
|
\
|
|
void* buf_a = bli_obj_buffer_at_off( a ); \
|
|
inc_t rs_a = bli_obj_row_stride( a ); \
|
|
inc_t cs_a = bli_obj_col_stride( a ); \
|
|
\
|
|
void* buf_x = bli_obj_buffer_at_off( x ); \
|
|
inc_t incx = bli_obj_vector_inc( x ); \
|
|
\
|
|
void* buf_alpha = bli_obj_buffer_for_1x1( dt, alpha ); \
|
|
\
|
|
/* Invoke the void pointer-based function for the given datatype. */ \
|
|
bli_call_ft_11 \
|
|
( \
|
|
dt, \
|
|
opname, \
|
|
uploa, \
|
|
transa, \
|
|
diaga, \
|
|
m, \
|
|
buf_alpha, \
|
|
buf_a, rs_a, cs_a, \
|
|
buf_x, incx, \
|
|
cntx \
|
|
); \
|
|
} \
|
|
|
|
GENFRONT( trsv_unb_var1 )
|
|
GENFRONT( trsv_unb_var2 )
|
|
|
|
GENFRONT( trsv_unf_var1 )
|
|
GENFRONT( trsv_unf_var2 )
|
|
|