Distributed Arrays in Julia
Distributed arrays for Julia.
| Documentation | Build Status |
|:-------------------------------------------------------------------------:|:-------------------------------------------------------------:|
|
|
|
DistributedArrays.jluses the stdlib
Distributedto implement a Global Array interface. A
DArrayis distributed across a set of workers. Each worker can read and write from its local portion of the array and each worker has read-only access to the portions of the array held by other workers.
The package can be installed with the Julia package manager. From the Julia REPL, type
]to enter the Pkg REPL mode and run:
pkg> add DistributedArrays
Or, equivalently, via the
PkgAPI:
julia> import Pkg; Pkg.add("DistributedArrays")
The package is tested against Julia
0.7,
1.0and the nightly builds of the Julia
masterbranch on Linux, and macOS.
Usage questions can be posted on the Julia Discourse forum under the
Parallel/Distributedcategory, in the #parallel channel of the Julia Slack.
Contributions are very welcome, as are feature requests and suggestions. Please open an issue if you encounter any problems. In particular additions to documentation are encouraged!