mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Details: - Removed copynzv and copynzm operation directories. These operations implemented a variation of copyv/m that, in the case of real source and complex destination operands, leaves the imaginary component untouched (rather than setting it to zero). I realize now that the special case(s) (e.g. gemm with real A and B but complex C) that I thought required this operation actually can be handled more simply. - Removed level0 scalar macros implementing copynzs, copynzjs.
236 lines
5.3 KiB
C
236 lines
5.3 KiB
C
/*
|
|
|
|
BLIS
|
|
An object-based framework for developing high-performance BLAS-like
|
|
libraries.
|
|
|
|
Copyright (C) 2013, The University of Texas
|
|
|
|
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 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.
|
|
|
|
*/
|
|
|
|
#ifndef BLIS_H
|
|
#define BLIS_H
|
|
|
|
|
|
// Allow C++ users to include this header file in their source code. However,
|
|
// we make the extern "C" conditional on whether we're using a C++ compiler,
|
|
// since regular C compilers don't understand the extern "C" construct.
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
// -- BLIS configuration definition --
|
|
|
|
// NOTE: We include bli_config.h here because there might be something
|
|
// defined there that is needed within one of the system headers. A good
|
|
// example: posix_memalign() needs _GNU_SOURCE on GNU systems (I think).
|
|
|
|
#include "bli_config.h"
|
|
|
|
|
|
// -- System headers --
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
// gettimeofday() needs this.
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
|
|
// -- BLIS definitions --
|
|
|
|
#include "bli_type_defs.h"
|
|
#include "bli_macro_defs.h"
|
|
#include "bli_extern_defs.h"
|
|
|
|
|
|
// -- BLIS kernel definitions --
|
|
|
|
#include "bli_kernel.h"
|
|
#include "bli_kernel_macro_defs.h"
|
|
|
|
|
|
// -- Base operation prototypes --
|
|
|
|
#include "bli_init.h"
|
|
#include "bli_malloc.h"
|
|
#include "bli_obj.h"
|
|
#include "bli_mem.h"
|
|
#include "bli_part.h"
|
|
#include "bli_query.h"
|
|
#include "bli_blocksize.h"
|
|
#include "bli_param_map.h"
|
|
#include "bli_clock.h"
|
|
#include "bli_check.h"
|
|
#include "bli_error.h"
|
|
#include "bli_f2c.h"
|
|
#include "bli_machval.h"
|
|
#include "bli_version.h"
|
|
|
|
// Control tree definitions.
|
|
#include "bli_cntl.h"
|
|
|
|
|
|
// -- Level-0 operations --
|
|
|
|
#include "bli_absqsc.h"
|
|
#include "bli_addsc.h"
|
|
#include "bli_copysc.h"
|
|
#include "bli_divsc.h"
|
|
#include "bli_fnormsc.h"
|
|
#include "bli_getsc.h"
|
|
#include "bli_mulsc.h"
|
|
#include "bli_setsc.h"
|
|
#include "bli_sqrtsc.h"
|
|
#include "bli_subsc.h"
|
|
#include "bli_zipsc.h"
|
|
#include "bli_unzipsc.h"
|
|
|
|
|
|
// -- Level-1 operations --
|
|
|
|
// one vector operand
|
|
#include "bli_invertv.h"
|
|
#include "bli_scalv.h"
|
|
#include "bli_setv.h"
|
|
// two vector operands
|
|
#include "bli_addv.h"
|
|
#include "bli_axpyv.h"
|
|
#include "bli_copyv.h"
|
|
#include "bli_dotv.h"
|
|
#include "bli_dotxv.h"
|
|
#include "bli_fnormv.h"
|
|
#include "bli_scal2v.h"
|
|
#include "bli_subv.h"
|
|
#include "bli_swapv.h"
|
|
#include "bli_packv.h"
|
|
#include "bli_unpackv.h"
|
|
|
|
|
|
// -- Level-1d operations --
|
|
|
|
// one diagonal operand
|
|
#include "bli_invertd.h"
|
|
#include "bli_scald.h"
|
|
#include "bli_setd.h"
|
|
// two diagonal operands
|
|
#include "bli_addd.h"
|
|
#include "bli_axpyd.h"
|
|
#include "bli_copyd.h"
|
|
#include "bli_scal2d.h"
|
|
#include "bli_subd.h"
|
|
|
|
|
|
// -- Level-1f operations --
|
|
|
|
#include "bli_axpy2v.h"
|
|
#include "bli_axpyf.h"
|
|
#include "bli_dotxf.h"
|
|
#include "bli_dotaxpyv.h"
|
|
#include "bli_dotxaxpyf.h"
|
|
|
|
|
|
// -- Level-1m operations --
|
|
|
|
// one matrix operand
|
|
#include "bli_scalm.h"
|
|
#include "bli_setm.h"
|
|
// two matrix operands
|
|
#include "bli_addm.h"
|
|
#include "bli_axpym.h"
|
|
#include "bli_copym.h"
|
|
#include "bli_fnormm.h"
|
|
#include "bli_scal2m.h"
|
|
#include "bli_subm.h"
|
|
#include "bli_packm.h"
|
|
#include "bli_unpackm.h"
|
|
|
|
|
|
// -- Level-2 operations --
|
|
|
|
#include "bli_gemv.h"
|
|
#include "bli_ger.h"
|
|
#include "bli_hemv.h"
|
|
#include "bli_her.h"
|
|
#include "bli_her2.h"
|
|
#include "bli_symv.h"
|
|
#include "bli_syr.h"
|
|
#include "bli_syr2.h"
|
|
#include "bli_trmv.h"
|
|
#include "bli_trsv.h"
|
|
|
|
|
|
// -- Helper operands for ukernels --
|
|
|
|
#include "bli_dupl.h"
|
|
|
|
|
|
// -- Level-3 operations --
|
|
|
|
#include "bli_gemm.h"
|
|
#include "bli_hemm.h"
|
|
#include "bli_herk.h"
|
|
#include "bli_her2k.h"
|
|
#include "bli_symm.h"
|
|
#include "bli_syrk.h"
|
|
#include "bli_syr2k.h"
|
|
#include "bli_trmm.h"
|
|
#include "bli_trmm3.h"
|
|
#include "bli_trsm.h"
|
|
|
|
|
|
// -- Utility operations --
|
|
|
|
#include "bli_abmaxv.h"
|
|
#include "bli_absumv.h"
|
|
#include "bli_absumm.h"
|
|
#include "bli_mkherm.h"
|
|
#include "bli_mksymm.h"
|
|
#include "bli_mktrim.h"
|
|
#include "bli_printv.h"
|
|
#include "bli_printm.h"
|
|
#include "bli_randv.h"
|
|
#include "bli_randm.h"
|
|
#include "bli_sumsqv.h"
|
|
|
|
|
|
// -- BLAS-to-BLIS headers --
|
|
|
|
#include "bli_blas.h"
|
|
|
|
|
|
// End extern "C" construct block.
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|