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
|
/*
-- MAGMA (version 2.9.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date January 2025
*/
#ifndef MAGMASPARSE_H
#define MAGMASPARSE_H
/* ------------------------------------------------------------
* MAGMASPARSE BLAS Functions
* --------------------------------------------------------- */
//#include "magmasparseblas.h"
/* ------------------------------------------------------------
* MAGMASPARSE functions
* --------------------------------------------------------- */
#include "magmasparse_z.h"
#include "magmasparse_c.h"
#include "magmasparse_d.h"
#include "magmasparse_s.h"
// mixed precision
#include "magmasparse_zc.h"
#include "magmasparse_ds.h"
/* ------------------------------------------------------------
* MAGMASPARSE types
* --------------------------------------------------------- */
/*
#include "magmasparse_types_z.h"
#include "magmasparse_types_c.h"
#include "magmasparse_types_d.h"
#include "magmasparse_types_s.h"
*/
#include "magmasparse_types.h"
#endif /* MAGMASPARSE_H */
|