1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
// Copyright (c) 2017-2023, University of Tennessee. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
// This program is free software: you can redistribute it and/or modify it under
// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
#ifndef BLAS_HH
#define BLAS_HH
#include "blas/defines.h"
#include "blas/counter.hh"
// Version is updated by make_release.py; DO NOT EDIT.
// Version 2024.10.26
#define BLASPP_VERSION 20241026
namespace blas {
int blaspp_version();
const char* blaspp_id();
} // namespace blas
#include "blas/wrappers.hh"
// =============================================================================
// Level 1 BLAS template implementations
#include "blas/asum.hh"
#include "blas/axpy.hh"
#include "blas/copy.hh"
#include "blas/dot.hh"
#include "blas/dotu.hh"
#include "blas/iamax.hh"
#include "blas/nrm2.hh"
#include "blas/rot.hh"
#include "blas/rotg.hh"
#include "blas/rotm.hh"
#include "blas/rotmg.hh"
#include "blas/scal.hh"
#include "blas/swap.hh"
// =============================================================================
// Level 2 BLAS template implementations
#include "blas/gemv.hh"
#include "blas/ger.hh"
#include "blas/geru.hh"
#include "blas/hemv.hh"
#include "blas/her.hh"
#include "blas/her2.hh"
#include "blas/symv.hh"
#include "blas/syr.hh"
#include "blas/syr2.hh"
#include "blas/trmv.hh"
#include "blas/trsv.hh"
// =============================================================================
// Level 3 BLAS template implementations
#include "blas/gemm.hh"
#include "blas/hemm.hh"
#include "blas/herk.hh"
#include "blas/her2k.hh"
#include "blas/symm.hh"
#include "blas/syrk.hh"
#include "blas/syr2k.hh"
#include "blas/trmm.hh"
#include "blas/trsm.hh"
// =============================================================================
// Device BLAS
#include "blas/device_blas.hh"
#endif // #ifndef BLAS_HH
|