Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (2.9)

superlufunctions.hh
1// SPDX-FileCopyrightText: Copyright (C) DUNE Project contributors, see file LICENSE.md in module root
2// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
3// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
4// vi: set et ts=4 sw=2 sts=2:
5#ifndef DUNE_ISTL_SUPERLUFUNCTIONS_HH
6#define DUNE_ISTL_SUPERLUFUNCTIONS_HH
7#if HAVE_SUPERLU
8
9
10#define int_t SUPERLU_INT_TYPE
11#include "supermatrix.h"
12#include "slu_util.h"
13#undef int_t
14
15#if __has_include("slu_sdefs.h")
16extern "C" {
17 extern void
18 sgssvx(superlu_options_t *, SuperMatrix *, int *, int *, int *,
19 char *, float *, float *, SuperMatrix *, SuperMatrix *,
20 void *, int, SuperMatrix *, SuperMatrix *,
21 float *, float *, float *, float *,
22 GlobalLU_t*, mem_usage_t *, SuperLUStat_t *, int *);
23
24 extern void
25 sCreate_Dense_Matrix(SuperMatrix *, int, int, float *, int,
26 Stype_t, Dtype_t, Mtype_t);
27 extern void
28 sCreate_CompCol_Matrix(SuperMatrix *, int, int, int, float *,
29 int *, int *, Stype_t, Dtype_t, Mtype_t);
30 extern int sQuerySpace (SuperMatrix *, SuperMatrix *, mem_usage_t *);
31
32 extern void sPrint_CompCol_Matrix(char *, SuperMatrix *);
33}
34#endif
35
36#if __has_include("slu_ddefs.h")
37extern "C" {
38 extern void
39 dgssvx(superlu_options_t *, SuperMatrix *, int *, int *, int *,
40 char *, double *, double *, SuperMatrix *, SuperMatrix *,
41 void *, int, SuperMatrix *, SuperMatrix *,
42 double *, double *, double *, double *,
43 GlobalLU_t*, mem_usage_t *, SuperLUStat_t *, int *);
44
45 extern void
46 dCreate_CompCol_Matrix(SuperMatrix *, int, int, int, double *,
47 int *, int *, Stype_t, Dtype_t, Mtype_t);
48
49 extern void
50 dCreate_Dense_Matrix(SuperMatrix *, int, int, double *, int,
51 Stype_t, Dtype_t, Mtype_t);
52
53 extern int dQuerySpace (SuperMatrix *, SuperMatrix *, mem_usage_t *);
54
55 extern void dPrint_CompCol_Matrix(char *, SuperMatrix *);
56}
57#endif
58
59#if __has_include("slu_cdefs.h")
60#ifndef SUPERLU_TYPEDEF_COMPLEX
61// Per default SuperLU >= 7.0.0. does not provide
62// a type complex anymore. By setting SUPERLU_TYPEDEF_COMPLEX
63// we tell SuperLU to define complex to be the same as the
64// new type singlecomplex
65#define SUPERLU_TYPEDEF_COMPLEX
66#endif
67#include "slu_scomplex.h"
68
69extern "C" {
70 extern void
71 cgssvx(superlu_options_t *, SuperMatrix *, int *, int *, int *,
72 char *, float *, float *, SuperMatrix *, SuperMatrix *,
73 void *, int, SuperMatrix *, SuperMatrix *,
74 float *, float *, float *, float *,
75 GlobalLU_t*, mem_usage_t *, SuperLUStat_t *, int *);
76
77
78 extern void
79 cCreate_Dense_Matrix(SuperMatrix *, int, int, ::complex *, int,
80 Stype_t, Dtype_t, Mtype_t);
81
82
83 extern void
84 cCreate_CompCol_Matrix(SuperMatrix *, int, int, int, ::complex *,
85 int *, int *, Stype_t, Dtype_t, Mtype_t);
86
87 extern int cQuerySpace (SuperMatrix *, SuperMatrix *, mem_usage_t *);
88
89 extern void cPrint_CompCol_Matrix(char *, SuperMatrix *);
90}
91#endif
92
93#if __has_include("slu_zdefs.h")
94#include "slu_dcomplex.h"
95extern "C" {
96 extern void
97 zgssvx(superlu_options_t *, SuperMatrix *, int *, int *, int *,
98 char *, double *, double *, SuperMatrix *, SuperMatrix *,
99 void *, int, SuperMatrix *, SuperMatrix *,
100 double *, double *, double *, double *,
101 GlobalLU_t*, mem_usage_t *, SuperLUStat_t *, int *);
102
103
104 extern void
105 zCreate_CompCol_Matrix(SuperMatrix *, int, int, int, doublecomplex *,
106 int *, int *, Stype_t, Dtype_t, Mtype_t);
107
108 extern void
109 zCreate_Dense_Matrix(SuperMatrix *, int, int, doublecomplex *, int,
110 Stype_t, Dtype_t, Mtype_t);
111
112 extern int zQuerySpace (SuperMatrix *, SuperMatrix *, mem_usage_t *);
113
114 extern void zPrint_CompCol_Matrix(char *, SuperMatrix *);
115}
116#endif
117
118
119#endif
120#endif
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)