Elemental.jl icon indicating copy to clipboard operation
Elemental.jl copied to clipboard

Julia interface to the Elemental linear algebra library.

Results 17 Elemental.jl issues
Sort by recently updated
recently updated
newest added

Daily PkgEval testing of Elemental.jl has been segfaulting for a while, e.g., https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_date/2022-11/24/Elemental.primary.log: ``` [ Info: Running Elemental.jl tests worldSize=1 [130] signal (11.1): Segmentation fault in expression starting at /home/pkgeval/.julia/packages/Elemental/SF7xW/test/lav.jl:78...

Is there any plan to support MVAPICH2 & intel MPI? Intel MPI (which has binary compatibility with MVAPICH2) is also one of widely used MPI implementation. It would be nice...

First attempt towards #37

The Jack Paulson link in the README is broken. [This](https://hodgestar.com/jack.html) seems to be a current page for him, or perhaps it could link to the [paper](https://doi.org/10.1145/2427023.2427030)?

``` # mpiexecjl -n 2 julia dcopy.jl # This code trys to copy in parallel a El.DistMatrix to another El.DistMatrix # The intention is for each rank to deal with...

My goal is to add svd(A::DArray) to the julia interface to elemental. I have been looking at svdvals for understanding how to do it. But I do not know how...

Hi, I tried the example here: https://github.com/JuliaParallel/Elemental.jl#svd-example-with-distributedarrays-on-4-processors on my macOS 11.6.1 laptop and I get: ``` dyld: lazy symbol binding failed: Symbol not found: _dlacpy_64_ ``` I'm wondering if this...

I have files each holding 1 column of an array. I would like to create an Elemental.DistMatrix from these files. I would like to load the DistMatrix in parallel. An...