Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"sphinx.ext.viewcode",
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"sphinxcontrib.mermaid",
]

templates_path = ["_templates"]
Expand Down Expand Up @@ -59,6 +60,7 @@

# MyST settings
myst_heading_anchors = 3
myst_fence_as_directive = ["mermaid"]

# Napoleon settings
napoleon_google_docstring = True
Expand Down
2 changes: 0 additions & 2 deletions docs/source/guides/ray.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Ray Clusters & Jobs

---

> **Audience**: You already know how to configure executors with NeMo-Run and want distributed *Ray* on either Kubernetes **or** Slurm.
>
> **TL;DR**: `RayCluster` manages the _cluster_; `RayJob` submits a job with an ephemeral cluster. Everything else is syntactic sugar.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ docs = [
"myst-parser",
"sphinx>=7",
"sphinx-autoapi>=3.0.0",
"nvidia-sphinx-theme"
"nvidia-sphinx-theme",
"sphinxcontrib-mermaid",
]

[build-system]
Expand Down
Loading