-
Updated
Apr 16, 2022 - C++
parallel-computing
Here are 1,633 public repositories matching this topic...
-
Updated
Apr 20, 2022 - Python
-
Updated
Oct 27, 2021
-
Updated
Apr 13, 2022 - Python
-
Updated
Mar 23, 2022 - Python
-
Updated
Apr 10, 2022 - C++
-
Updated
Dec 4, 2017 - Rust
-
Updated
Apr 13, 2022 - C++
-
Updated
Apr 21, 2022 - C++
-
Updated
Apr 13, 2022 - Nim
-
Updated
Apr 22, 2022 - C++
-
Updated
Apr 19, 2022 - Python
-
Updated
Apr 21, 2022 - Java
-
Updated
Apr 21, 2022 - 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
Apr 21, 2022 - C++
-
Updated
Apr 21, 2022 - Fortran
-
Updated
Mar 28, 2022 - Python
-
Updated
Apr 20, 2022 - C++
-
Updated
Apr 19, 2022 - Python
-
Updated
Sep 8, 2017 - JavaScript
- core
- mpi
-
Updated
Apr 7, 2022
-
Updated
Jul 23, 2021 - Rust
-
Updated
Apr 17, 2022 - Python
-
Updated
Mar 5, 2022 - Python
-
Updated
Feb 22, 2022 - Haskell
-
Updated
Jan 3, 2021
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
and so on.