-
Updated
Aug 6, 2021 - C++
parallel-computing
Here are 1,421 public repositories matching this topic...
-
Updated
Aug 10, 2021 - Python
-
Updated
Jun 25, 2021 - Python
-
Updated
Jan 17, 2020
-
Updated
Dec 4, 2017 - Rust
-
Updated
Oct 19, 2020 - Python
-
Updated
Dec 6, 2020 - C
-
Updated
Aug 13, 2021 - C++
-
Updated
Aug 13, 2021 - Nim
-
Updated
Aug 16, 2021 - Python
-
Updated
Aug 19, 2021 - C++
-
Updated
Aug 9, 2021 - Java
-
Updated
Aug 18, 2021 - R
-
Updated
Aug 19, 2021 - C++
Suppose
@variables x
z = x^3 + x^2 + x + 1
Would be nice to have a degree
function that we can use as degree(z,x)
to extract the degree of z
with respect to x
(this will help for multi-variable polynomials too).
Also coeff(z,x)
to extract a list of coefficients with respect to he variable x
. Thus coeff(z,x^2)
returns the coefficient with respect to x^2
an
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
Aug 17, 2021 - Python
-
Updated
Aug 19, 2021 - C++
-
Updated
Aug 18, 2021 - Fortran
-
Updated
Aug 6, 2021 - C++
-
Updated
Sep 8, 2017 - JavaScript
-
Updated
Aug 18, 2021 - Python
- core
- mpi
-
Updated
Jul 23, 2021 - Rust
-
Updated
Jul 29, 2021 - Python
-
Updated
Aug 1, 2021 - Haskell
-
Updated
Aug 12, 2021 - C
-
Updated
Oct 5, 2017 - Julia
-
Updated
Aug 10, 2021 - Python
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."
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.