Skip to content

Commit

Permalink
docs: Add make script (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsamaroo authored Oct 29, 2023
1 parent 0c7ad88 commit 8799660
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Manifest.toml
build/
2 changes: 2 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
16 changes: 16 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using Distributed
using Documenter: DocMeta, makedocs, deploydocs

DocMeta.setdocmeta!(Distributed, :DocTestSetup, :(using Distributed); recursive=true)

makedocs(;
modules = [Distributed],
sitename = "Distributed",
pages = Any[
"Distributed" => "index.md",
],
checkdocs = :exports,
warnonly = [:cross_references],
)

deploydocs(repo = "github.com/JuliaLang/Distributed.jl.git")
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# [Distributed Computing](@id man-distributed)
Tools for distributed parallel processing.

```@docs
Distributed
Distributed.addprocs
Distributed.nprocs
Distributed.nworkers
Expand Down Expand Up @@ -31,18 +31,18 @@ Distributed.AbstractWorkerPool
Distributed.WorkerPool
Distributed.CachingPool
Distributed.default_worker_pool
Distributed.clear!(::CachingPool)
Distributed.clear!
Distributed.remote
Distributed.remotecall(::Any, ::AbstractWorkerPool, ::Any...)
Distributed.remotecall_wait(::Any, ::AbstractWorkerPool, ::Any...)
Distributed.remotecall_fetch(::Any, ::AbstractWorkerPool, ::Any...)
Distributed.remote_do(::Any, ::AbstractWorkerPool, ::Any...)
Distributed.@spawn
Distributed.@spawnat
Distributed.@fetch
Distributed.@fetchfrom
Distributed.@distributed
Distributed.@everywhere
Distributed.clear!(::Any, ::Any; ::Any)
Distributed.remoteref_id
Distributed.channel_from_id
Distributed.worker_id_from_socket
Expand Down

0 comments on commit 8799660

Please sign in to comment.