File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change
1
+ Manifest.toml
2
+ build /
Original file line number Diff line number Diff line change
1
+ [deps ]
2
+ Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
Original file line number Diff line number Diff line change
1
+ using Distributed
2
+ using Documenter: DocMeta, makedocs, deploydocs
3
+
4
+ DocMeta. setdocmeta! (Distributed, :DocTestSetup , :(using Distributed); recursive= true )
5
+
6
+ makedocs (;
7
+ modules = [Distributed],
8
+ sitename = " Distributed" ,
9
+ pages = Any[
10
+ " Distributed" => " index.md" ,
11
+ ],
12
+ checkdocs = :exports ,
13
+ warnonly = [:cross_references ],
14
+ )
15
+
16
+ deploydocs (repo = " github.com/JuliaLang/Distributed.jl.git" )
Original file line number Diff line number Diff line change 1
1
# [ Distributed Computing] (@id man-distributed)
2
- Tools for distributed parallel processing.
3
2
4
3
``` @docs
4
+ Distributed
5
5
Distributed.addprocs
6
6
Distributed.nprocs
7
7
Distributed.nworkers
@@ -31,18 +31,18 @@ Distributed.AbstractWorkerPool
31
31
Distributed.WorkerPool
32
32
Distributed.CachingPool
33
33
Distributed.default_worker_pool
34
- Distributed.clear!(::CachingPool)
34
+ Distributed.clear!
35
35
Distributed.remote
36
36
Distributed.remotecall(::Any, ::AbstractWorkerPool, ::Any...)
37
37
Distributed.remotecall_wait(::Any, ::AbstractWorkerPool, ::Any...)
38
38
Distributed.remotecall_fetch(::Any, ::AbstractWorkerPool, ::Any...)
39
39
Distributed.remote_do(::Any, ::AbstractWorkerPool, ::Any...)
40
+ Distributed.@spawn
40
41
Distributed.@spawnat
41
42
Distributed.@fetch
42
43
Distributed.@fetchfrom
43
44
Distributed.@distributed
44
45
Distributed.@everywhere
45
- Distributed.clear!(::Any, ::Any; ::Any)
46
46
Distributed.remoteref_id
47
47
Distributed.channel_from_id
48
48
Distributed.worker_id_from_socket
You can’t perform that action at this time.
0 commit comments