-
Updated
Nov 3, 2021 - C++
parallel-computing
Here are 1,490 public repositories matching this topic...
-
Updated
Nov 5, 2021 - Python
-
Updated
Oct 27, 2021
-
Updated
Oct 27, 2021 - Python
-
Updated
Oct 19, 2020 - Python
-
Updated
Dec 4, 2017 - Rust
-
Updated
Oct 4, 2021 - C++
-
Updated
Dec 6, 2020 - C
-
Updated
Nov 4, 2021 - C++
-
Updated
Nov 3, 2021 - Nim
-
Updated
Oct 20, 2021 - Python
-
Updated
Nov 7, 2021 - C++
-
Updated
Nov 2, 2021 - Java
-
Updated
Nov 4, 2021 - R
Speed up test suite
The standard accelerate test suite, used by all the backends, can be quite slow. Several of the tests are significantly slower than the others, for example segmented folds and scans, which I believe is because the reference implementations are very inefficient. Writing some more efficient reference implementations (e.g. using Data.Vector.Unboxed
) should help speed things up.
When computing the isosurface, when 4 simplex edges crosses the isosurface, we add 2 triangles to the isosurface triangulation.
Right now we add these arbitrarily (in these 3 lines) but we should add them so that the curvature is minimized.
The current state o
-
Updated
Nov 3, 2021 - Python
-
Updated
Nov 7, 2021 - C++
-
Updated
Nov 7, 2021 - Fortran
-
Updated
Oct 7, 2021 - C++
-
Updated
Sep 8, 2017 - JavaScript
-
Updated
Nov 7, 2021 - Python
- core
- mpi
-
Updated
Jul 23, 2021 - Rust
-
Updated
Sep 15, 2021 - Python
-
Updated
Nov 6, 2021 - Haskell
-
Updated
Oct 11, 2021
-
Updated
Oct 15, 2021 - Python
-
Updated
Nov 5, 2021 - C
Improve this page
Add a description, image, and links to the parallel-computing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parallel-computing topic, visit your repo's landing page and select "manage topics."
Suppose
Would be nice to have a
degree
function that we can use asdegree(z,x)
to extract the degree ofz
with respect tox
(this will help for multi-variable polynomials too).Also
coeff(z,x)
to extract a list of coefficients with respect to he variablex
. Thuscoeff(z,x^2)
returns the coefficient with respect tox^2
an