@@ -3,8 +3,8 @@ import Printf.@printf
3
3
"""
4
4
GrB_init(mode)
5
5
6
- GrB_init must called before any other GraphBLAS operation.
7
- GrB_init defines the mode that GraphBLAS will use: blocking or non-blocking.
6
+ ` GrB_init` must called before any other GraphBLAS operation.
7
+ ` GrB_init` defines the mode that GraphBLAS will use: blocking or non-blocking.
8
8
With blocking mode, all operations finish before returning to the user application.
9
9
With non-blocking mode, operations can be left pending, and are computed only when needed.
10
10
"""
15
15
"""
16
16
GrB_wait()
17
17
18
- GrB_wait forces all pending operations to complete.
19
- Blocking mode is as if GrB_wait is called whenever a GraphBLAS method or operation returns to the user.
18
+ ` GrB_wait` forces all pending operations to complete.
19
+ Blocking mode is as if ` GrB_wait` is called whenever a GraphBLAS method or operation returns to the user.
20
20
"""
21
21
function GrB_wait ()
22
22
return GrB_Info (ccall (dlsym (graphblas_lib, " GrB_wait" ), Cint, (), ))
25
25
"""
26
26
GrB_finalize()
27
27
28
- GrB_finalize must be called as the last GraphBLAS operation.
29
- GrB_finalize does not call GrB_wait; any pending computations are abandoned.
28
+ ` GrB_finalize` must be called as the last GraphBLAS operation.
29
+ ` GrB_finalize` does not call ` GrB_wait` ; any pending computations are abandoned.
30
30
"""
31
31
function GrB_finalize ()
32
32
return GrB_Info (ccall (dlsym (graphblas_lib, " GrB_finalize" ), Cint, (), ))
35
35
"""
36
36
GrB_error()
37
37
38
- Each GraphBLAS method and operation returns a GrB_Info error code.
39
- GrB_error returns additional information on the error.
38
+ Each GraphBLAS method and operation returns a ` GrB_Info` error code.
39
+ ` GrB_error` returns additional information on the error.
40
40
41
41
# Examples
42
42
```jldoctest
0 commit comments