ngsolve 6.2.2506.post74.dev0__cp314-cp314-macosx_10_15_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ngsolve might be problematic. Click here for more details.

Files changed (315) hide show
  1. netgen/include/analytic_integrals.hpp +10 -0
  2. netgen/include/arnoldi.hpp +55 -0
  3. netgen/include/bandmatrix.hpp +334 -0
  4. netgen/include/basematrix.hpp +957 -0
  5. netgen/include/basevector.hpp +1268 -0
  6. netgen/include/bdbequations.hpp +2805 -0
  7. netgen/include/bdbintegrator.hpp +1660 -0
  8. netgen/include/bem_diffops.hpp +475 -0
  9. netgen/include/bessel.hpp +1064 -0
  10. netgen/include/bilinearform.hpp +963 -0
  11. netgen/include/bla.hpp +29 -0
  12. netgen/include/blockalloc.hpp +95 -0
  13. netgen/include/blockjacobi.hpp +328 -0
  14. netgen/include/bspline.hpp +116 -0
  15. netgen/include/calcinverse.hpp +141 -0
  16. netgen/include/cg.hpp +368 -0
  17. netgen/include/chebyshev.hpp +44 -0
  18. netgen/include/cholesky.hpp +720 -0
  19. netgen/include/clapack.h +7254 -0
  20. netgen/include/code_generation.hpp +296 -0
  21. netgen/include/coefficient.hpp +2033 -0
  22. netgen/include/coefficient_impl.hpp +19 -0
  23. netgen/include/coefficient_stdmath.hpp +167 -0
  24. netgen/include/commutingAMG.hpp +106 -0
  25. netgen/include/comp.hpp +79 -0
  26. netgen/include/compatibility.hpp +41 -0
  27. netgen/include/complex_wrapper.hpp +73 -0
  28. netgen/include/compressedfespace.hpp +110 -0
  29. netgen/include/contact.hpp +235 -0
  30. netgen/include/diagonalmatrix.hpp +154 -0
  31. netgen/include/differentialoperator.hpp +276 -0
  32. netgen/include/diffop.hpp +1286 -0
  33. netgen/include/diffop_impl.hpp +328 -0
  34. netgen/include/diffopwithfactor.hpp +123 -0
  35. netgen/include/discontinuous.hpp +84 -0
  36. netgen/include/dump.hpp +949 -0
  37. netgen/include/ectypes.hpp +121 -0
  38. netgen/include/eigen.hpp +60 -0
  39. netgen/include/eigensystem.hpp +18 -0
  40. netgen/include/elasticity_equations.hpp +595 -0
  41. netgen/include/elementbyelement.hpp +195 -0
  42. netgen/include/elementtopology.hpp +1760 -0
  43. netgen/include/elementtransformation.hpp +339 -0
  44. netgen/include/evalfunc.hpp +405 -0
  45. netgen/include/expr.hpp +1686 -0
  46. netgen/include/facetfe.hpp +175 -0
  47. netgen/include/facetfespace.hpp +180 -0
  48. netgen/include/facethofe.hpp +111 -0
  49. netgen/include/facetsurffespace.hpp +112 -0
  50. netgen/include/fe_interfaces.hpp +32 -0
  51. netgen/include/fem.hpp +87 -0
  52. netgen/include/fesconvert.hpp +14 -0
  53. netgen/include/fespace.hpp +1449 -0
  54. netgen/include/finiteelement.hpp +286 -0
  55. netgen/include/globalinterfacespace.hpp +77 -0
  56. netgen/include/globalspace.hpp +115 -0
  57. netgen/include/gridfunction.hpp +525 -0
  58. netgen/include/h1amg.hpp +124 -0
  59. netgen/include/h1hofe.hpp +188 -0
  60. netgen/include/h1hofe_impl.hpp +1262 -0
  61. netgen/include/h1hofefo.hpp +148 -0
  62. netgen/include/h1hofefo_impl.hpp +185 -0
  63. netgen/include/h1hofespace.hpp +167 -0
  64. netgen/include/h1lofe.hpp +1240 -0
  65. netgen/include/h1lumping.hpp +41 -0
  66. netgen/include/hcurl_equations.hpp +1381 -0
  67. netgen/include/hcurlcurlfe.hpp +2241 -0
  68. netgen/include/hcurlcurlfespace.hpp +78 -0
  69. netgen/include/hcurlfe.hpp +259 -0
  70. netgen/include/hcurlfe_utils.hpp +107 -0
  71. netgen/include/hcurlhdiv_dshape.hpp +857 -0
  72. netgen/include/hcurlhdivfes.hpp +308 -0
  73. netgen/include/hcurlhofe.hpp +175 -0
  74. netgen/include/hcurlhofe_impl.hpp +1871 -0
  75. netgen/include/hcurlhofespace.hpp +193 -0
  76. netgen/include/hcurllofe.hpp +1146 -0
  77. netgen/include/hdiv_equations.hpp +880 -0
  78. netgen/include/hdivdivfe.hpp +2923 -0
  79. netgen/include/hdivdivsurfacespace.hpp +76 -0
  80. netgen/include/hdivfe.hpp +206 -0
  81. netgen/include/hdivfe_utils.hpp +717 -0
  82. netgen/include/hdivfes.hpp +75 -0
  83. netgen/include/hdivhofe.hpp +447 -0
  84. netgen/include/hdivhofe_impl.hpp +1107 -0
  85. netgen/include/hdivhofefo.hpp +229 -0
  86. netgen/include/hdivhofespace.hpp +177 -0
  87. netgen/include/hdivhosurfacefespace.hpp +106 -0
  88. netgen/include/hdivlofe.hpp +773 -0
  89. netgen/include/hidden.hpp +74 -0
  90. netgen/include/householder.hpp +181 -0
  91. netgen/include/hypre_ams_precond.hpp +123 -0
  92. netgen/include/hypre_precond.hpp +73 -0
  93. netgen/include/integrator.hpp +2012 -0
  94. netgen/include/integratorcf.hpp +253 -0
  95. netgen/include/interpolate.hpp +49 -0
  96. netgen/include/intrule.hpp +2542 -0
  97. netgen/include/intrules_SauterSchwab.hpp +25 -0
  98. netgen/include/irspace.hpp +49 -0
  99. netgen/include/jacobi.hpp +153 -0
  100. netgen/include/kernels.hpp +762 -0
  101. netgen/include/l2hofe.hpp +194 -0
  102. netgen/include/l2hofe_impl.hpp +564 -0
  103. netgen/include/l2hofefo.hpp +542 -0
  104. netgen/include/l2hofespace.hpp +344 -0
  105. netgen/include/la.hpp +38 -0
  106. netgen/include/linearform.hpp +266 -0
  107. netgen/include/matrix.hpp +2140 -0
  108. netgen/include/memusage.hpp +41 -0
  109. netgen/include/meshaccess.hpp +1359 -0
  110. netgen/include/mgpre.hpp +204 -0
  111. netgen/include/mp_coefficient.hpp +145 -0
  112. netgen/include/mptools.hpp +2281 -0
  113. netgen/include/multigrid.hpp +42 -0
  114. netgen/include/multivector.hpp +447 -0
  115. netgen/include/mumpsinverse.hpp +187 -0
  116. netgen/include/mycomplex.hpp +361 -0
  117. netgen/include/ng_lapack.hpp +1661 -0
  118. netgen/include/ngblas.hpp +1232 -0
  119. netgen/include/ngs_defines.hpp +30 -0
  120. netgen/include/ngs_stdcpp_include.hpp +106 -0
  121. netgen/include/ngs_utils.hpp +121 -0
  122. netgen/include/ngsobject.hpp +1019 -0
  123. netgen/include/ngsstream.hpp +113 -0
  124. netgen/include/ngstd.hpp +72 -0
  125. netgen/include/nodalhofe.hpp +96 -0
  126. netgen/include/nodalhofe_impl.hpp +141 -0
  127. netgen/include/normalfacetfe.hpp +223 -0
  128. netgen/include/normalfacetfespace.hpp +98 -0
  129. netgen/include/normalfacetsurfacefespace.hpp +84 -0
  130. netgen/include/order.hpp +251 -0
  131. netgen/include/parallel_matrices.hpp +222 -0
  132. netgen/include/paralleldofs.hpp +340 -0
  133. netgen/include/parallelngs.hpp +23 -0
  134. netgen/include/parallelvector.hpp +269 -0
  135. netgen/include/pardisoinverse.hpp +200 -0
  136. netgen/include/periodic.hpp +129 -0
  137. netgen/include/plateaufespace.hpp +25 -0
  138. netgen/include/pml.hpp +275 -0
  139. netgen/include/pmltrafo.hpp +631 -0
  140. netgen/include/postproc.hpp +142 -0
  141. netgen/include/potentialtools.hpp +22 -0
  142. netgen/include/precomp.hpp +60 -0
  143. netgen/include/preconditioner.hpp +602 -0
  144. netgen/include/prolongation.hpp +377 -0
  145. netgen/include/python_comp.hpp +107 -0
  146. netgen/include/python_fem.hpp +89 -0
  147. netgen/include/python_linalg.hpp +58 -0
  148. netgen/include/python_ngstd.hpp +386 -0
  149. netgen/include/recursive_pol.hpp +4896 -0
  150. netgen/include/recursive_pol_tet.hpp +395 -0
  151. netgen/include/recursive_pol_trig.hpp +492 -0
  152. netgen/include/reorderedfespace.hpp +81 -0
  153. netgen/include/sample_sort.hpp +105 -0
  154. netgen/include/scalarfe.hpp +335 -0
  155. netgen/include/shapefunction_utils.hpp +113 -0
  156. netgen/include/simd_complex.hpp +329 -0
  157. netgen/include/smoother.hpp +253 -0
  158. netgen/include/solve.hpp +89 -0
  159. netgen/include/sparsecholesky.hpp +313 -0
  160. netgen/include/sparsematrix.hpp +1038 -0
  161. netgen/include/sparsematrix_dyn.hpp +90 -0
  162. netgen/include/sparsematrix_impl.hpp +1013 -0
  163. netgen/include/special_matrix.hpp +463 -0
  164. netgen/include/specialelement.hpp +125 -0
  165. netgen/include/statushandler.hpp +33 -0
  166. netgen/include/stringops.hpp +12 -0
  167. netgen/include/superluinverse.hpp +136 -0
  168. netgen/include/symbolicintegrator.hpp +850 -0
  169. netgen/include/symmetricmatrix.hpp +144 -0
  170. netgen/include/tangentialfacetfe.hpp +224 -0
  171. netgen/include/tangentialfacetfespace.hpp +91 -0
  172. netgen/include/tensor.hpp +522 -0
  173. netgen/include/tensorcoefficient.hpp +446 -0
  174. netgen/include/tensorproductintegrator.hpp +113 -0
  175. netgen/include/thcurlfe.hpp +128 -0
  176. netgen/include/thcurlfe_impl.hpp +380 -0
  177. netgen/include/thdivfe.hpp +80 -0
  178. netgen/include/thdivfe_impl.hpp +492 -0
  179. netgen/include/tpdiffop.hpp +461 -0
  180. netgen/include/tpfes.hpp +133 -0
  181. netgen/include/tpintrule.hpp +224 -0
  182. netgen/include/triangular.hpp +465 -0
  183. netgen/include/tscalarfe.hpp +245 -0
  184. netgen/include/tscalarfe_impl.hpp +1029 -0
  185. netgen/include/umfpackinverse.hpp +148 -0
  186. netgen/include/vector.hpp +1273 -0
  187. netgen/include/voxelcoefficientfunction.hpp +41 -0
  188. netgen/include/vtkoutput.hpp +198 -0
  189. netgen/include/vvector.hpp +208 -0
  190. netgen/include/webgui.hpp +92 -0
  191. netgen/libngbla.dylib +0 -0
  192. netgen/libngcomp.dylib +0 -0
  193. netgen/libngfem.dylib +0 -0
  194. netgen/libngla.dylib +0 -0
  195. netgen/libngsbem.dylib +0 -0
  196. netgen/libngsolve.dylib +0 -0
  197. netgen/libngstd.dylib +0 -0
  198. ngsolve/TensorProductTools.py +210 -0
  199. ngsolve/__console.py +94 -0
  200. ngsolve/__expr.py +181 -0
  201. ngsolve/__init__.py +148 -0
  202. ngsolve/__init__.pyi +233 -0
  203. ngsolve/_scikit_build_core_dependencies.py +30 -0
  204. ngsolve/bla.pyi +1153 -0
  205. ngsolve/bvp.py +78 -0
  206. ngsolve/bvp.pyi +32 -0
  207. ngsolve/cmake/NGSolveConfig.cmake +102 -0
  208. ngsolve/cmake/ngsolve-targets-release.cmake +79 -0
  209. ngsolve/cmake/ngsolve-targets.cmake +163 -0
  210. ngsolve/comp/__init__.pyi +5449 -0
  211. ngsolve/comp/pml.pyi +89 -0
  212. ngsolve/config/__init__.py +1 -0
  213. ngsolve/config/__init__.pyi +43 -0
  214. ngsolve/config/__main__.py +4 -0
  215. ngsolve/config/config.py +60 -0
  216. ngsolve/config/config.pyi +45 -0
  217. ngsolve/demos/TensorProduct/__init__.py +0 -0
  218. ngsolve/demos/TensorProduct/tp_dg_1d_1d.py +80 -0
  219. ngsolve/demos/TensorProduct/tp_dg_1d_2d.py +73 -0
  220. ngsolve/demos/TensorProduct/tp_dg_2d_1d.py +72 -0
  221. ngsolve/demos/TensorProduct/tp_dg_2d_2d.py +66 -0
  222. ngsolve/demos/__init__.py +0 -0
  223. ngsolve/demos/howto/__init__.py +0 -0
  224. ngsolve/demos/howto/hhj.py +44 -0
  225. ngsolve/demos/howto/hybrid_dg.py +53 -0
  226. ngsolve/demos/howto/mixed.py +30 -0
  227. ngsolve/demos/howto/nonlin.py +29 -0
  228. ngsolve/demos/howto/pickling.py +26 -0
  229. ngsolve/demos/howto/pml.py +31 -0
  230. ngsolve/demos/howto/taskmanager.py +20 -0
  231. ngsolve/demos/howto/tdnns.py +47 -0
  232. ngsolve/demos/howto/timeDG-skeleton.py +45 -0
  233. ngsolve/demos/howto/timeDG.py +38 -0
  234. ngsolve/demos/howto/timeDGlap.py +42 -0
  235. ngsolve/demos/howto/timeDGwave.py +61 -0
  236. ngsolve/demos/intro/__init__.py +0 -0
  237. ngsolve/demos/intro/adaptive.py +123 -0
  238. ngsolve/demos/intro/cmagnet.py +59 -0
  239. ngsolve/demos/intro/elasticity.py +76 -0
  240. ngsolve/demos/intro/navierstokes.py +74 -0
  241. ngsolve/demos/intro/poisson.ipynb +170 -0
  242. ngsolve/demos/intro/poisson.py +41 -0
  243. ngsolve/demos/mpi/__init__.py +0 -0
  244. ngsolve/demos/mpi/mpi_cmagnet.py +87 -0
  245. ngsolve/demos/mpi/mpi_navierstokes.py +117 -0
  246. ngsolve/demos/mpi/mpi_poisson.py +89 -0
  247. ngsolve/demos/mpi/mpi_timeDG.py +82 -0
  248. ngsolve/directsolvers.py +26 -0
  249. ngsolve/directsolvers.pyi +15 -0
  250. ngsolve/eigenvalues.py +364 -0
  251. ngsolve/eigenvalues.pyi +30 -0
  252. ngsolve/fem.pyi +1647 -0
  253. ngsolve/internal.py +89 -0
  254. ngsolve/krylovspace.py +1013 -0
  255. ngsolve/krylovspace.pyi +298 -0
  256. ngsolve/la.pyi +1230 -0
  257. ngsolve/meshes.py +748 -0
  258. ngsolve/ngs2petsc.py +310 -0
  259. ngsolve/ngscxx.py +42 -0
  260. ngsolve/ngslib.so +0 -0
  261. ngsolve/ngstd.pyi +59 -0
  262. ngsolve/nonlinearsolvers.py +203 -0
  263. ngsolve/nonlinearsolvers.pyi +95 -0
  264. ngsolve/preconditioners.py +11 -0
  265. ngsolve/preconditioners.pyi +7 -0
  266. ngsolve/solve.pyi +109 -0
  267. ngsolve/solve_implementation.py +168 -0
  268. ngsolve/solve_implementation.pyi +42 -0
  269. ngsolve/solvers.py +7 -0
  270. ngsolve/solvers.pyi +14 -0
  271. ngsolve/timestepping.py +185 -0
  272. ngsolve/timestepping.pyi +28 -0
  273. ngsolve/timing.py +108 -0
  274. ngsolve/timing.pyi +54 -0
  275. ngsolve/utils.py +167 -0
  276. ngsolve/utils.pyi +273 -0
  277. ngsolve/webgui.py +670 -0
  278. ngsolve-6.2.2506.post74.dev0.data/data/Netgen.icns +0 -0
  279. ngsolve-6.2.2506.post74.dev0.data/data/bin/ngscxx +17 -0
  280. ngsolve-6.2.2506.post74.dev0.data/data/bin/ngsld +13 -0
  281. ngsolve-6.2.2506.post74.dev0.data/data/bin/ngsolve.tcl +648 -0
  282. ngsolve-6.2.2506.post74.dev0.data/data/bin/ngspy +2 -0
  283. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/beam.geo +17 -0
  284. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/beam.vol +240 -0
  285. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/chip.in2d +41 -0
  286. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/chip.vol +614 -0
  287. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coil.geo +12 -0
  288. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coil.vol +2560 -0
  289. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coilshield.geo +24 -0
  290. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/coilshield.vol +3179 -0
  291. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/cube.geo +19 -0
  292. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/cube.vol +1832 -0
  293. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d10_DGdoubleglazing.pde +50 -0
  294. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d11_chip_nitsche.pde +40 -0
  295. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d1_square.pde +43 -0
  296. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d2_chip.pde +35 -0
  297. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d3_helmholtz.pde +22 -0
  298. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d4_cube.pde +46 -0
  299. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d5_beam.pde +74 -0
  300. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d6_shaft.pde +73 -0
  301. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d7_coil.pde +50 -0
  302. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d8_coilshield.pde +49 -0
  303. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/d9_hybridDG.pde +72 -0
  304. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/doubleglazing.in2d +27 -0
  305. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/doubleglazing.vol +737 -0
  306. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/piezo2d40round4.vol.gz +0 -0
  307. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/shaft.geo +73 -0
  308. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/shaft.vol +4291 -0
  309. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/square.in2d +17 -0
  310. ngsolve-6.2.2506.post74.dev0.data/data/share/ngsolve/square.vol +149 -0
  311. ngsolve-6.2.2506.post74.dev0.dist-info/METADATA +13 -0
  312. ngsolve-6.2.2506.post74.dev0.dist-info/RECORD +315 -0
  313. ngsolve-6.2.2506.post74.dev0.dist-info/WHEEL +5 -0
  314. ngsolve-6.2.2506.post74.dev0.dist-info/licenses/LICENSE +504 -0
  315. ngsolve-6.2.2506.post74.dev0.dist-info/top_level.txt +2 -0
netgen/include/bla.hpp ADDED
@@ -0,0 +1,29 @@
1
+ #ifndef FILE_NGBLA
2
+ #define FILE_NGBLA
3
+
4
+
5
+ #include <ngstd.hpp>
6
+
7
+
8
+ #include "complex_wrapper.hpp"
9
+
10
+ #include "expr.hpp"
11
+ #include "vector.hpp"
12
+ #include "matrix.hpp"
13
+ #include "ngblas.hpp"
14
+ #include "cholesky.hpp"
15
+ #include "symmetricmatrix.hpp"
16
+ #include "bandmatrix.hpp"
17
+ #include "triangular.hpp"
18
+ #include "householder.hpp"
19
+ #include "tensor.hpp"
20
+ #include "eigensystem.hpp"
21
+
22
+ // so far we can move stuff to ngcore
23
+
24
+ #include "calcinverse.hpp"
25
+ #include "simd_complex.hpp"
26
+
27
+ #include "ng_lapack.hpp"
28
+
29
+ #endif
@@ -0,0 +1,95 @@
1
+ #ifndef FILE_BLOCKALLOC
2
+ #define FILE_BLOCKALLOC
3
+
4
+ /**************************************************************************/
5
+ /* File: blockalloc.hpp */
6
+ /* Author: Joachim Schoeberl */
7
+ /* Date: 19. Apr. 2000 */
8
+ /**************************************************************************/
9
+
10
+ #include <ngstd.hpp>
11
+
12
+ namespace ngstd
13
+ {
14
+
15
+ /**
16
+ Optimized memory handler.
17
+ Memory handler allocates many objects at once.
18
+ Maintains free list of deleted objects
19
+ */
20
+ class BlockAllocator
21
+ {
22
+ /// size of data
23
+ unsigned int size;
24
+ /// number of blocks allocated at once
25
+ unsigned int blocks;
26
+ /// single linked list of free elements
27
+ void * freelist;
28
+ /// pointers to blocks
29
+ Array<char*> bablocks;
30
+ ///
31
+ int nels;
32
+ public:
33
+ /// Create BlockAllocator for elements of size asize
34
+ NGS_DLL_HEADER BlockAllocator (unsigned int asize, unsigned int ablocks = 100);
35
+ /// Delete all memeory
36
+ NGS_DLL_HEADER ~BlockAllocator ();
37
+
38
+ /// Return pointer to new element
39
+ NGS_DLL_HEADER void * Alloc ();
40
+ /*
41
+ {
42
+ nels++;
43
+ if (!freelist)
44
+ Alloc2 ();
45
+
46
+ void * p = freelist;
47
+ freelist = *(void**)freelist;
48
+ return p;
49
+ }
50
+ */
51
+
52
+
53
+ /// Send memory to free-list
54
+ NGS_DLL_HEADER void Free (void * p);
55
+ /*
56
+ {
57
+ nels--;
58
+ *(void**)p = freelist;
59
+ freelist = p;
60
+ }
61
+ */
62
+
63
+ /// number of allocated elements
64
+ int NumElements () { return nels; }
65
+
66
+ NGS_DLL_HEADER void Print (ostream * ost) const;
67
+
68
+ const MemoryTracer& GetMemoryTracer() const { return mt; }
69
+
70
+ void StartMemoryTracing() const
71
+ {
72
+ mt.Alloc(bablocks.Size() * size * blocks);
73
+ }
74
+
75
+ private:
76
+ NGS_DLL_HEADER void * Alloc2 ();
77
+ MemoryTracer mt;
78
+ };
79
+
80
+
81
+ }
82
+
83
+ INLINE void * operator new (size_t /* size */, ngstd::BlockAllocator & ball)
84
+ {
85
+ return ball.Alloc();
86
+ }
87
+
88
+ INLINE void operator delete (void * p, ngstd::BlockAllocator & ball)
89
+ {
90
+ ball.Free (p);
91
+ }
92
+
93
+
94
+
95
+ #endif
@@ -0,0 +1,328 @@
1
+ #ifndef FILE_BLOCK_JACOBI
2
+ #define FILE_BLOCK_JACOBI
3
+
4
+ /* *************************************************************************/
5
+ /* File: blockjacobi.hpp */
6
+ /* Author: Joachim Schoeberl */
7
+ /* Date: 06. Oct. 96 */
8
+ /* *************************************************************************/
9
+
10
+
11
+ #include "sparsematrix.hpp"
12
+ #include "jacobi.hpp"
13
+
14
+ namespace ngla
15
+ {
16
+
17
+ /**
18
+ Base class for Block - Jacobi and Block Gauss Seidel smoother.
19
+ */
20
+ class NGS_DLL_HEADER BaseBlockJacobiPrecond : public BaseMSMPrecond
21
+ {
22
+ protected:
23
+ /// the table defining the blocks
24
+ shared_ptr<Table<int>> blocktable;
25
+ /// maximal block size
26
+ int maxbs;
27
+
28
+ /// block coloring
29
+ Table<int> block_coloring;
30
+
31
+ /// balancing for each color
32
+ Array<Partitioning> color_balance;
33
+
34
+ size_t nze;
35
+ public:
36
+ /// the blocktable define the blocks. ATTENTION: entries will be reordered !
37
+ BaseBlockJacobiPrecond (shared_ptr<Table<int>> ablocktable);
38
+
39
+ /// deletes the table
40
+ virtual ~BaseBlockJacobiPrecond ();
41
+
42
+ virtual void Smooth (BaseVector & x, const BaseVector & b, int steps = 1) const override
43
+ {
44
+ GSSmooth (x, b, steps);
45
+ }
46
+ virtual void SmoothBack (BaseVector & x, const BaseVector & b, int steps = 1) const override
47
+ {
48
+ GSSmoothBack (x, b, steps);
49
+ }
50
+
51
+
52
+
53
+ /// performs steps Gauss-Seidel steps for the equation A x = b
54
+ virtual void GSSmooth (BaseVector & x, const BaseVector & b,
55
+ int steps = 1) const = 0;
56
+
57
+ /// performs steps Gauss-Seidel steps for the equation A x = b with partial residual y
58
+ virtual void GSSmoothPartial (BaseVector & x, const BaseVector & b, BaseVector & y) const
59
+ {
60
+ GSSmooth (x, b, 1);
61
+ }
62
+
63
+
64
+ /// does smoothing. The vector res contains the residuum (b-Ax) before and after the smoothing
65
+ virtual void GSSmoothResiduum (BaseVector & x, const BaseVector & b,
66
+ BaseVector & res, int steps = 1) const = 0;
67
+
68
+ /// does smoothing in reversed order
69
+ virtual void GSSmoothBack (BaseVector & x, const BaseVector & b,
70
+ int steps = 1) const = 0;
71
+
72
+ virtual void GSSmoothBackPartial (BaseVector & x, const BaseVector & b, BaseVector & y) const
73
+ {
74
+ GSSmoothBack (x, b, 1);
75
+ }
76
+
77
+
78
+ /// reorders block entries for band-width minimization
79
+ int Reorder (FlatArray<int> block, const MatrixGraph & graph,
80
+ FlatArray<int> usedflags, // in and out: array of -1, size = graph.size
81
+ LocalHeap & lh);
82
+
83
+ auto GetBlockTable() const { return blocktable; }
84
+ };
85
+
86
+
87
+ class SymmetricBlockGaussSeidelPrecond : virtual public BaseMatrix
88
+ {
89
+ shared_ptr<BaseBlockJacobiPrecond> jac;
90
+ public:
91
+ SymmetricBlockGaussSeidelPrecond (shared_ptr<const BaseSparseMatrix> mat, shared_ptr<Table<int>> blocktable)
92
+ : jac(mat->CreateBlockJacobiPrecond(blocktable)) { }
93
+
94
+ int VHeight() const override { return jac->VHeight(); }
95
+ int VWidth() const override { return jac->VHeight(); }
96
+
97
+ void Mult (const BaseVector & x, BaseVector & y) const override
98
+ {
99
+ y = 0;
100
+ jac->GSSmooth (y, x);
101
+ jac->GSSmoothBack (y, x);
102
+ }
103
+
104
+ AutoVector CreateRowVector() const override { return jac->CreateRowVector(); }
105
+ AutoVector CreateColVector() const override { return jac->CreateColVector(); }
106
+ };
107
+
108
+
109
+
110
+
111
+ /**
112
+ A block-Jacobi preconditioner.
113
+ The blocks are specified by a table container
114
+ */
115
+ template <class TM, class TV_ROW, class TV_COL>
116
+ class NGS_DLL_HEADER BlockJacobiPrecond : public BaseBlockJacobiPrecond,
117
+ public S_BaseMatrix<typename mat_traits<TM>::TSCAL>
118
+ {
119
+ protected:
120
+ /// a reference to the matrix
121
+ // const SparseMatrix<TM,TV_ROW,TV_COL> & mat;
122
+ shared_ptr<const SparseMatrix<TM,TV_ROW,TV_COL>> mat;
123
+ /// inverses of the small blocks
124
+ Array<FlatMatrix<TM>> invdiag;
125
+ /// the data for the inverses
126
+ Array<TM> bigmem;
127
+
128
+ public:
129
+ // typedef typename mat_traits<TM>::TV_ROW TVX;
130
+ typedef TV_ROW TVX;
131
+ typedef typename mat_traits<TM>::TSCAL TSCAL;
132
+
133
+ ///
134
+ BlockJacobiPrecond (shared_ptr<const SparseMatrix<TM,TV_ROW,TV_COL>> amat,
135
+ shared_ptr<Table<int>> ablocktable, bool cumulate_block_diags = false);
136
+ ///
137
+ virtual ~BlockJacobiPrecond ();
138
+
139
+ size_t Height() const { return mat->Height(); }
140
+ int VHeight() const override { return mat->Height(); }
141
+ size_t Width() const { return mat->Width(); }
142
+ int VWidth() const override { return mat->Width(); }
143
+
144
+ AutoVector CreateRowVector() const override { return mat->CreateColVector(); }
145
+ AutoVector CreateColVector() const override { return mat->CreateRowVector(); }
146
+
147
+ BaseMatrix::OperatorInfo GetOperatorInfo () const override
148
+ { return { string("BlockJacobi-")+typeid(TM).name(), this->Height(), this->Width() }; }
149
+
150
+ ///
151
+ void MultAdd (TSCAL s, const BaseVector & x, BaseVector & y) const override;
152
+
153
+ ///
154
+ void MultTransAdd (TSCAL s, const BaseVector & x, BaseVector & y) const override;
155
+
156
+
157
+ ///
158
+ void GSSmooth (BaseVector & x, const BaseVector & b,
159
+ int steps = 1) const override;
160
+
161
+ void GSSmoothBack (BaseVector & x, const BaseVector & b,
162
+ int steps = 1) const override;
163
+
164
+ void GSSmoothResiduum (BaseVector & x, const BaseVector & b,
165
+ BaseVector & res, int steps = 1) const override
166
+ {
167
+ GSSmooth (x, b, steps);
168
+ res = b - (*mat) * x;
169
+ }
170
+
171
+ ///
172
+ virtual void GSSmoothNumbering (BaseVector & x, const BaseVector & b,
173
+ const Array<int> & numbering,
174
+ int forward = 1) const
175
+ {
176
+ ;
177
+ }
178
+
179
+ Array<MemoryUsage> GetMemoryUsage () const override
180
+ {
181
+ int nels = 0;
182
+ for (size_t i = 0; i < blocktable->Size(); i++)
183
+ {
184
+ int bs = (*blocktable)[i].Size();
185
+ nels += bs*bs;
186
+ }
187
+ return { MemoryUsage ("BlockJac", nels*sizeof(TM), blocktable->Size()) };
188
+ }
189
+
190
+ virtual shared_ptr<BaseSparseMatrix> CreateSparseMatrix() const override;
191
+ const Array<FlatMatrix<TM>> & GetInverses() const { return invdiag; }
192
+ const Array<TM> & MatrixData() const { return bigmem; }
193
+ };
194
+
195
+
196
+
197
+
198
+
199
+ /* **************** SYMMETRIC ****************** */
200
+
201
+
202
+ ///
203
+ template <class TM, class TV>
204
+ class BlockJacobiPrecondSymmetric :
205
+ public BaseBlockJacobiPrecond,
206
+ public S_BaseMatrix<typename mat_traits<TM>::TSCAL>
207
+ {
208
+ protected:
209
+ shared_ptr<const SparseMatrixSymmetric<TM,TV>> mat;
210
+
211
+ //
212
+ enum { NBLOCKS = 20 };
213
+ // DynamicMem<int> blockstart, blocksize, blockbw;
214
+ // DynamicMem<TM> data[NBLOCKS];
215
+
216
+ Array<int> blockstart, blocksize, blockbw;
217
+ Array<TM> data[NBLOCKS];
218
+
219
+
220
+ bool lowmem;
221
+ public:
222
+
223
+ typedef TV TVX;
224
+ typedef typename mat_traits<TM>::TSCAL TSCAL;
225
+
226
+ ///
227
+ NGS_DLL_HEADER BlockJacobiPrecondSymmetric (shared_ptr<const SparseMatrixSymmetric<TM,TV>> amat,
228
+ shared_ptr<Table<int>> ablocktable);
229
+
230
+ /*
231
+ BlockJacobiPrecondSymmetric (const SparseMatrixSymmetric<TM,TV> & amat,
232
+ const FlatVector<TVX> & constraint,
233
+ Table<int> & ablocktable);
234
+ */
235
+ ///
236
+ virtual ~BlockJacobiPrecondSymmetric ();
237
+
238
+ FlatBandCholeskyFactors<TM> InvDiag (int i) const
239
+ {
240
+ return FlatBandCholeskyFactors<TM> (blocksize[i],
241
+ blockbw[i],
242
+ const_cast<TM*>(&data[i%NBLOCKS][blockstart[i]]));
243
+ }
244
+
245
+ void ComputeBlockFactor (FlatArray<int> block, int bw, FlatBandCholeskyFactors<TM> & inv) const;
246
+
247
+ ///
248
+ void MultAdd (TSCAL s, const BaseVector & x, BaseVector & y) const override;
249
+
250
+ ///
251
+ void MultTransAdd (TSCAL s, const BaseVector & x, BaseVector & y) const override;
252
+
253
+ ///
254
+ AutoVector CreateRowVector () const override { return mat->CreateColVector(); }
255
+ AutoVector CreateColVector () const override { return mat->CreateRowVector(); }
256
+
257
+
258
+ int Height() const { return mat->Height(); }
259
+ int VHeight() const override { return mat->Height(); }
260
+ int Width() const { return mat->Width(); }
261
+ int VWidth() const override { return mat->Width(); }
262
+
263
+
264
+ ///
265
+ void GSSmooth (BaseVector & x, const BaseVector & b,
266
+ int steps = 1) const override;
267
+
268
+ void GSSmoothPartial (BaseVector & x, const BaseVector & b,
269
+ BaseVector & y) const override;
270
+
271
+
272
+
273
+ ///
274
+ void GSSmoothResiduum (BaseVector & x, const BaseVector & b,
275
+ BaseVector & res, int steps = 1) const override;
276
+
277
+
278
+ ///
279
+ void GSSmoothBack (BaseVector & x, const BaseVector & b,
280
+ int steps = 1) const override;
281
+
282
+
283
+ void GSSmoothBackPartial (BaseVector & x, const BaseVector & b,
284
+ BaseVector & y) const override;
285
+
286
+
287
+
288
+
289
+
290
+ void SmoothBlock (int i,
291
+ FlatVector<TVX> & x,
292
+ // const FlatVector<TVX> & b,
293
+ FlatVector<TVX> & y) const;
294
+
295
+
296
+ ///
297
+ virtual void GSSmoothNumbering (BaseVector & x, const BaseVector & b,
298
+ const Array<int> & numbering,
299
+ int forward = 1) const
300
+ {
301
+ ;
302
+ }
303
+
304
+ /*
305
+ virtual void MemoryUsage (Array<MemoryUsageStruct*> & mu) const
306
+ {
307
+ // Array<BandCholeskyFactors<TM>*> invdiag;
308
+
309
+
310
+ int nels = 0;
311
+ for (int i = 0; i < blocktable.Size(); i++)
312
+ if (invdiag[i])
313
+ {
314
+ int s = invdiag[i]->Size();
315
+ int bw = invdiag[i]->BandWidth();
316
+ nels += s*bw - (bw * (bw-1)) / 2;
317
+ nels += s;
318
+ }
319
+ mu.Append (new MemoryUsageStruct ("BlockJacSym Table", blocktable.NElements()*sizeof(int), 1));
320
+ mu.Append (new MemoryUsageStruct ("BlockJacSym", nels*sizeof(TM), 2*blocktable.Size()));
321
+ }
322
+ */
323
+ };
324
+
325
+
326
+ }
327
+
328
+ #endif
@@ -0,0 +1,116 @@
1
+ #ifndef FILE_BSPLINE
2
+ #define FILE_BSPLINE
3
+
4
+ /**************************************************************************/
5
+ /* File: bspline.hpp */
6
+ /* Author: Joachim Schoeberl */
7
+ /* Date: 10. Aug. 2015 */
8
+ /**************************************************************************/
9
+
10
+
11
+ namespace ngstd
12
+ {
13
+
14
+ class BSpline
15
+ {
16
+ shared_ptr<BSpline> diff = nullptr;
17
+ int order;
18
+ Array<double> t;
19
+ Array<double> c;
20
+
21
+ public:
22
+ BSpline() = default;
23
+ NGS_DLL_HEADER BSpline (int aorder,
24
+ Array<double> at,
25
+ Array<double> ac);
26
+ NGS_DLL_HEADER BSpline (const BSpline &) = default;
27
+ NGS_DLL_HEADER BSpline & operator= (const BSpline &) = default;
28
+
29
+ void DoArchive(Archive& ar)
30
+ {
31
+ ar & order & t & c;
32
+ }
33
+
34
+ NGS_DLL_HEADER BSpline Differentiate () const;
35
+ NGS_DLL_HEADER BSpline Integrate () const;
36
+
37
+ NGS_DLL_HEADER double Evaluate (double x) const;
38
+ NGS_DLL_HEADER SIMD<double> Evaluate(SIMD<double> x) const;
39
+ double operator() (double x) const { return Evaluate(x); }
40
+ // Complex operator() (Complex x) const { return Evaluate(x.real()); }
41
+ /*I had to explicitly write double and SIMD<double>
42
+ here as these functions will be used in GenerateCode and I was
43
+ getting the error "templates must have C++ linkage"*/
44
+ NGS_DLL_HEADER AutoDiff<1,double> operator() (AutoDiff<1,double> x) const;
45
+ NGS_DLL_HEADER AutoDiffDiff<1,double> operator() (AutoDiffDiff<1,double> x) const;
46
+ NGS_DLL_HEADER AutoDiff<1,SIMD<double>> operator() (AutoDiff<1,SIMD<double>> x) const;
47
+ NGS_DLL_HEADER AutoDiffDiff<1,SIMD<double>> operator() (AutoDiffDiff<1,SIMD<double>> x) const;
48
+
49
+ NGS_DLL_HEADER SIMD<double> operator() (SIMD<double> x) const;
50
+ // NGS_DLL_HEADER SIMD<Complex> operator() (SIMD<Complex> x) const;
51
+
52
+ int GetOrder() const { return order; }
53
+ friend ostream & operator<< (ostream & ost, const BSpline & sp);
54
+ };
55
+
56
+ extern ostream & operator<< (ostream & ost, const BSpline & sp);
57
+
58
+ class BSpline2D
59
+ {
60
+ Array<double> px;
61
+ Array<double> py;
62
+ Array<double> v;
63
+ [[maybe_unused]] int order = 1;
64
+ bool extrapolate = true;
65
+
66
+ std::tuple<int,int,bool> Search(double x, double y) const;
67
+
68
+ template<typename T>
69
+ T Interpolate(int ix, int iy, T x, T y) const
70
+ {
71
+ double x0 = px[ix];
72
+ double x1 = px[ix+1];
73
+ double y0 = py[iy];
74
+ double y1 = py[iy+1];
75
+ double dx = x1-x0;
76
+ double dy = y1-y0;
77
+
78
+ auto fy0 = ((x1-x)*GetV(ix, iy) + (x-x0)*GetV(ix+1, iy))/dx;
79
+ auto fy1 = ((x1-x)*GetV(ix, iy+1) + (x-x0)*GetV(ix+1, iy+1))/dx;
80
+ return ((y1-y)*fy0 + (y-y0)*fy1)/dy;
81
+ }
82
+
83
+ double GetV(int ix, int iy) const
84
+ {
85
+ return v[ix*py.Size()+iy];
86
+ }
87
+
88
+ public:
89
+ BSpline2D() = default;
90
+ NGS_DLL_HEADER BSpline2D ( Array<double> x, Array<double> y, Array<double> av, int aorder, bool aextrapolate)
91
+ : px(x), py(y), v(av), order(aorder), extrapolate(aextrapolate) { }
92
+ NGS_DLL_HEADER BSpline2D (const BSpline2D &) = default;
93
+ NGS_DLL_HEADER BSpline2D & operator= (const BSpline2D &) = default;
94
+
95
+ void DoArchive(Archive& ar)
96
+ {
97
+ ar & px & py & v;
98
+ }
99
+
100
+ NGS_DLL_HEADER double Evaluate (double x, double y) const;
101
+ NGS_DLL_HEADER SIMD<double> Evaluate(SIMD<double> x, SIMD<double> y) const;
102
+ double operator() (double x, double y) const { return Evaluate(x, y); }
103
+ NGS_DLL_HEADER AutoDiff<1,double> operator() (AutoDiff<1,double> x, AutoDiff<1,double> y) const;
104
+ NGS_DLL_HEADER AutoDiffDiff<1,double> operator() (AutoDiffDiff<1,double> x, AutoDiffDiff<1,double> y) const;
105
+ NGS_DLL_HEADER AutoDiff<1,SIMD<double>> operator() (AutoDiff<1,SIMD<double>> x, AutoDiff<1,SIMD<double>> y) const;
106
+ NGS_DLL_HEADER AutoDiffDiff<1,SIMD<double>> operator() (AutoDiffDiff<1,SIMD<double>> x, AutoDiffDiff<1,SIMD<double>> y) const;
107
+
108
+ NGS_DLL_HEADER SIMD<double> operator() (SIMD<double> x, SIMD<double> y) const;
109
+
110
+ friend ostream & operator<< (ostream & ost, const BSpline2D & sp);
111
+ };
112
+ extern ostream & operator<< (ostream & ost, const BSpline2D & sp);
113
+
114
+ }
115
+
116
+ #endif
@@ -0,0 +1,141 @@
1
+ #ifndef CALCINVERSE_HPP
2
+ #define CALCINVERSE_HPP
3
+
4
+
5
+ namespace ngbla
6
+ {
7
+
8
+ /* **************************** Inverse *************************** */
9
+
10
+
11
+ enum class INVERSE_LIB { INV_NGBLA, INV_NGBLA_LU, INV_LAPACK, INV_NGBLA_QR, INV_CHOOSE };
12
+
13
+ /// Calculate inverse. Gauss elimination with row pivoting
14
+ template <class T2>
15
+ extern NGS_DLL_HEADER void CalcInverse (FlatMatrix<T2> inv, INVERSE_LIB il = INVERSE_LIB::INV_CHOOSE);
16
+
17
+ extern NGS_DLL_HEADER void CalcInverse (FlatMatrix<double> inv, INVERSE_LIB il = INVERSE_LIB::INV_CHOOSE);
18
+
19
+ template <class T, class T2>
20
+ inline void CalcInverse (const FlatMatrix<T> m, FlatMatrix<T2> inv)
21
+ {
22
+ inv = m;
23
+ CalcInverse (inv);
24
+ }
25
+
26
+ template <class T, class T2>
27
+ inline void CalcInverse (const FlatMatrix<T> m, Matrix<T2> & inv)
28
+ {
29
+ inv = m;
30
+ CalcInverse (inv);
31
+ }
32
+
33
+
34
+
35
+ /**
36
+ Calculates the inverse of a Matrix.
37
+ */
38
+
39
+ template <typename T>
40
+ inline Matrix<T> Inverse (const FlatMatrix<T> & m)
41
+ {
42
+ Matrix<T> inv(m.Height(),m.Height());
43
+ CalcInverse (m, inv);
44
+ return inv;
45
+ }
46
+
47
+
48
+ inline void CalcInverse (double & m)
49
+ {
50
+ m = 1 / m;
51
+ }
52
+
53
+ inline void CalcInverse (Complex & m)
54
+ {
55
+ m = 1.0 / m;
56
+ }
57
+
58
+ template <int H, int W, typename T>
59
+ inline void CalcInverse (Mat<H,W,T> & m)
60
+ {
61
+ FlatMatrix<T> fm(m);
62
+ CalcInverse (fm);
63
+ }
64
+
65
+
66
+ INLINE void CalcInverse (const double & m, double & inv)
67
+ {
68
+ inv = 1 / m;
69
+ }
70
+
71
+ INLINE void CalcInverse (const Complex & m, Complex & inv)
72
+ {
73
+ inv = 1.0 / m;
74
+ }
75
+
76
+ template <int H, int W, typename T, typename TINV>
77
+ inline void CalcInverse (const Mat<H,W,T> & m, TINV & inv)
78
+ {
79
+ FlatMatrix<T> fm(m);
80
+ FlatMatrix<T> finv(inv);
81
+ CalcInverse (fm, finv);
82
+ }
83
+
84
+ template <typename T, typename TINV>
85
+ INLINE void CalcInverse (const Mat<0,0,T> & m, TINV & inv)
86
+ {
87
+ ;
88
+ }
89
+
90
+ template <typename T, typename TINV>
91
+ INLINE void CalcInverse (const Mat<1,1,T> & m, TINV & inv)
92
+ {
93
+ inv(0,0) = 1.0 / m(0,0);
94
+ }
95
+
96
+ template <typename T, typename TINV>
97
+ INLINE void CalcInverse (const Mat<2,2,T> & m, TINV & inv)
98
+ {
99
+ T idet = 1.0 / (m(0,0) * m(1,1) - m(0,1) * m(1,0));
100
+ inv(0,0) = idet * m(1,1);
101
+ inv(0,1) = -idet * m(0,1);
102
+ inv(1,0) = -idet * m(1,0);
103
+ inv(1,1) = idet * m(0,0);
104
+ }
105
+
106
+ template <typename T, typename TINV>
107
+ INLINE void CalcInverse (Mat<3,3,T> m, TINV & inv)
108
+ {
109
+ T h0 = m(4)*m(8)-m(5)*m(7);
110
+ T h1 = m(5)*m(6)-m(3)*m(8);
111
+ T h2 = m(3)*m(7)-m(4)*m(6);
112
+ T det = m(0) * h0 + m(1) * h1 + m(2) * h2;
113
+ T idet = 1.0 / det;
114
+
115
+ inv(0,0) = idet * h0;
116
+ inv(0,1) = -idet * (m(1) * m(8) - m(2) * m(7));
117
+ inv(0,2) = idet * (m(1) * m(5) - m(2) * m(4));
118
+
119
+ inv(1,0) = idet * h1;
120
+ inv(1,1) = idet * (m(0) * m(8) - m(2) * m(6));
121
+ inv(1,2) = -idet * (m(0) * m(5) - m(2) * m(3));
122
+
123
+ inv(2,0) = idet * h2;
124
+ inv(2,1) = -idet * (m(0) * m(7) - m(1) * m(6));
125
+ inv(2,2) = idet * (m(0) * m(4) - m(1) * m(3));
126
+ return;
127
+ }
128
+
129
+
130
+
131
+ /// Computes the Schur Complement.
132
+ extern NGS_DLL_HEADER void CalcSchurComplement (const FlatMatrix<double> a,
133
+ FlatMatrix<double> s,
134
+ const BitArray & used,
135
+ LocalHeap & lh);
136
+
137
+ }
138
+
139
+
140
+
141
+ #endif