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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/* -*- C -*- (not really, but good for syntax highlighting) */
%module multigridtools
/* why does SWIG complain about int arrays? a typecheck is provided */
#pragma SWIG nowarn=467
%{
#define SWIG_FILE_WITH_INIT
#include "numpy/arrayobject.h"
#include "ruge_stuben.h"
#include "smoothed_aggregation.h"
#include "relaxation.h"
%}
%feature("autodoc", "1");
%include "numpy.i"
%init %{
import_array();
%}
/*
* IN types
*/
%define I_IN_ARRAY1( ctype )
%apply ctype * IN_ARRAY1 {
const ctype Ap [ ],
const ctype Ai [ ],
const ctype Aj [ ],
const ctype Bp [ ],
const ctype Bi [ ],
const ctype Bj [ ],
const ctype Sp [ ],
const ctype Si [ ],
const ctype Sj [ ],
const ctype Tp [ ],
const ctype Ti [ ],
const ctype Tj [ ]
};
%enddef
%define T_IN_ARRAY1( ctype )
%apply ctype * IN_ARRAY1 {
const ctype Ax [ ],
const ctype Bx [ ],
const ctype Sx [ ],
const ctype Tx [ ],
const ctype Xx [ ],
const ctype Yx [ ],
const ctype x [ ],
const ctype y [ ],
const ctype b [ ]
};
%enddef
I_IN_ARRAY1( int )
T_IN_ARRAY1( float )
T_IN_ARRAY1( double )
/*
* OUT types
*/
%define I_ARRAY_ARGOUT( ctype )
%apply std::vector<ctype>* array_argout {
std::vector<ctype>* Ap,
std::vector<ctype>* Ai,
std::vector<ctype>* Aj,
std::vector<ctype>* Bp,
std::vector<ctype>* Bi,
std::vector<ctype>* Bj,
std::vector<ctype>* Cp,
std::vector<ctype>* Ci,
std::vector<ctype>* Cj,
std::vector<ctype>* Sp,
std::vector<ctype>* Si,
std::vector<ctype>* Sj,
std::vector<ctype>* Tp,
std::vector<ctype>* Ti,
std::vector<ctype>* Tj
};
%enddef
%define T_ARRAY_ARGOUT( ctype )
%apply std::vector<ctype>* array_argout {
std::vector<ctype>* Ax,
std::vector<ctype>* Bx,
std::vector<ctype>* Cx,
std::vector<ctype>* Sx,
std::vector<ctype>* Tx,
std::vector<ctype>* Xx,
std::vector<ctype>* Yx
};
%enddef
I_ARRAY_ARGOUT( int )
T_ARRAY_ARGOUT( float )
T_ARRAY_ARGOUT( double )
/*
* INPLACE types
*/
%define I_INPLACE_ARRAY1( ctype )
%apply ctype * INPLACE_ARRAY {
ctype Aj [ ]
};
%enddef
%define T_INPLACE_ARRAY1( ctype )
%apply ctype * INPLACE_ARRAY {
ctype x [ ],
ctype temp [ ]
};
%enddef
I_INPLACE_ARRAY1( int )
T_INPLACE_ARRAY1( float )
T_INPLACE_ARRAY1( double )
%include "ruge_stuben.h"
%include "smoothed_aggregation.h"
%include "relaxation.h"
/*
* Order may be important here, list float before double
*/
%define INSTANTIATE_BOTH( f_name )
%template(f_name) f_name<int,float>;
%template(f_name) f_name<int,double>;
/* 64-bit indices would go here */
%enddef
%define INSTANTIATE_INDEX( f_name )
%template(f_name) f_name<int>;
/* 64-bit indices would go here */
%enddef
%define INSTANTIATE_DATA( f_name )
%template(f_name) f_name<float>;
%template(f_name) f_name<double>;
%enddef
INSTANTIATE_DATA(rs_strong_connections)
INSTANTIATE_DATA(rs_interpolation)
INSTANTIATE_DATA(sa_strong_connections)
INSTANTIATE_DATA(sa_smoother)
/*INSTANTIATE_INDEX(sa_get_aggregates)*/
INSTANTIATE_BOTH(gauss_seidel)
INSTANTIATE_BOTH(jacobi)
|