- Feb 14, 2020
-
-
Isuru Fernando authored
-
- Feb 11, 2020
-
-
Isuru Fernando authored
-
Isuru Fernando authored
-
- Jan 14, 2020
-
-
Andreas Klöckner authored
-
- Jan 10, 2020
-
-
Andreas Klöckner authored
p^(2d-2) algorithm for L2L See merge request !123
-
Andreas Klöckner authored
-
- Dec 10, 2019
-
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Andreas Klöckner authored
-
Isuru Fernando authored
-
- Dec 09, 2019
-
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
- Dec 04, 2019
-
-
Andreas Klöckner authored
Asymptotically better algorithm for M2M (In both compressed and full) See merge request !122
-
Isuru Fernando authored
Some readability improvements for the new M2M algorithm See merge request isuruf/sumpy!2
-
Andreas Klöckner authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
On master, M2M is $`O(p^2d)`$ for order p and dimension d, but CSE reduces this down to $`O(p^{2d-1})`$ sometimes. For eg: in Helmholtz 2D, full taylor is $`O(p^{2d-1})`$ and HelmholtzConformingTaylor is $`O(p^{2d-1.5})`$. This commit produces expressions in $`O(p^{2d-1})`$ consistently regardless of how good CSE is and $`O(p^{2d-2})`$ for compressed. The new algorithm uses the observation that M2M coefficients have the form in 2D, $`B_{m, n} = \sum_{i\le m, j\le n} A_{i, j} d_x^i d_y^j \binom{m}{i} \binom{n}{j}`$ and can be rewritten as follows, Let $`T_{m, n} = \sum_{i\le m} A_{i, n} d_x^i \binom{m}{i}`$. Then, $`B_{m, n} = \sum_{j\le n} T_{m, j} d_y^j \binom{n}{j}`$ and $`T_{m, n}`$ are $`p^2`$ number of temporary variables that are reused for different M2M coefficients and costs $`p`$ per variable. Total cost for calculating $`T_{m, n}`$ is $`p^3`$ and similar for $`B_{m, n}`$
-
- Dec 02, 2019
-
-
Andreas Klöckner authored
Add Biharmonic 3D See merge request !121
-
- Dec 01, 2019
-
-
Isuru Fernando authored
-
- Nov 26, 2019
-
-
Andreas Klöckner authored
Biharmonic kernel fixes See merge request !120
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
-
Andreas Klöckner authored
-
- Nov 18, 2019
-
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
- Oct 21, 2019
-
-
Isuru Fernando authored
This reverts commit 7cf3197b.
-
- Oct 09, 2019
-
-
Andreas Klöckner authored
Fix get_source_args for DirectionalTargetDerivative See merge request !119
-
- Oct 08, 2019
-
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-
Isuru Fernando authored
-