@@ -14,14 +14,14 @@ Nonblocking Write
14
14
15
15
Write requests can be posted by the method call of :meth: `Variable.iput_var `.
16
16
Same as :meth: `Variable.put_var `, the behavior of :meth: `Variable.iput_var `
17
- varies depending on the pattern of provided optional arguments - `index `,
18
- `start `, ` count `, `stride `, and `imap ` as shown below. Note that the method
19
- only posts the request, which is not committed until :meth: `File.wait `. The
20
- method call returns a request id that can be optionally passed to
21
- :meth: ` File.wait ` to select this request.
17
+ varies depending on the pattern of provided optional arguments - `start `,
18
+ `count `, `stride `, and `imap ` as shown below. Note that the method only posts
19
+ the request, which is not committed until :meth: `File.wait `. The method call
20
+ returns a request id that can be optionally passed to :meth: ` File.wait ` to
21
+ select this request.
22
22
23
23
- `data ` - Request to write an entire variable
24
- - `data `, `index ` - Request to write a single data value
24
+ - `data `, `start ` - Request to write a single data value
25
25
- `data `, `start `, `count ` - Request to write an array of values
26
26
- `data `, `start `, `count `, `stride ` - Request to write a subarray of values
27
27
- `data `, `start `, `count `, `imap ` - Request to write a mapped array of values
@@ -58,10 +58,10 @@ Nonblocking Read
58
58
the method call returns a request id that can be optionally passed to
59
59
:meth: `File.wait ` to select this request. Similar to :meth: `Variable.get_var `,
60
60
the behavior of :meth: `Variable.iget_var ` varies depending on the pattern of
61
- provided optional arguments - `index `, ` start `, `count `, `stride `, and `imap `.
61
+ provided optional arguments - `start `, `count `, `stride `, and `imap `.
62
62
63
63
- `buff ` - Request to read an entire variable
64
- - `buff `, `index ` - Request to read a single data value
64
+ - `buff `, `start ` - Request to read a single data value
65
65
- `buff `, `start `, `count ` - Request to read an array of values
66
66
- `buff `, `start `, `count `, `stride ` - Request to read a subarray of values
67
67
- `buff `, `start `, `count `, `imap ` - Request to read a mapped array of values
0 commit comments