Skip to content

Commit f67fb51

Browse files
committed
Clarified read-only access
1 parent e6915d2 commit f67fb51

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
## Introduction
1010

1111
`DistributedArrays.jl` uses the stdlib [`Distributed`][distributed-docs] to implement a *Global Array* interface.
12-
A `DArray` is distributed accross a set of worker, but the entire array can be transparently
13-
accessed from all workers.
12+
A `DArray` is distributed accross 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.
1413

1514
## Installation
1615

docs/src/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
Distributed Arrays
77
------------------
88

9-
Large computations are often organized around large arrays of data. In
10-
these cases, a particularly natural way to obtain parallelism is to
11-
distribute arrays among several processes. This combines the memory
12-
resources of multiple machines, allowing use of arrays too large to fit
13-
on one machine. Each process operates on the part of the array it
14-
owns, providing a ready answer to the question of how a program should
15-
be divided among machines.
9+
Large computations are often organized around large arrays of data. In these
10+
cases, a particularly natural way to obtain parallelism is to distribute arrays
11+
among several processes. This combines the memory resources of multiple
12+
machines, allowing use of arrays too large to fit on one machine. Each process
13+
can read and write to the part of the array it owns and has read-only access to
14+
the parts it doesn't own. This provides a ready answer to the question of how a
15+
program should be divided among machines.
1616

1717
Julia distributed arrays are implemented by the `DArray` type. A
1818
`DArray` has an element type and dimensions just like an `Array`.

0 commit comments

Comments
 (0)