Skip to content

Commit

Permalink
Added description to job sub-module
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobbins228 authored and openshift-merge-bot[bot] committed Jan 18, 2024
1 parent 2926dbc commit ed9840b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/detailed-documentation/job/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h2 class="section-title" id="header-submodules">Sub-modules</h2>
<dl>
<dt><code class="name"><a title="codeflare_sdk.job.jobs" href="jobs.html">codeflare_sdk.job.jobs</a></code></dt>
<dd>
<div class="desc"></div>
<div class="desc"><p>The jobs sub-module contains methods needed to submit Distributed Data Parallel(DDP) jobs to Ray Clusters created by the CodeFlare SDK.</p></div>
</dd>
<dt><code class="name"><a title="codeflare_sdk.job.ray_jobs" href="ray_jobs.html">codeflare_sdk.job.ray_jobs</a></code></dt>
<dd>
Expand Down
6 changes: 5 additions & 1 deletion docs/detailed-documentation/job/jobs.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<meta name="generator" content="pdoc 0.10.0" />
<title>codeflare_sdk.job.jobs API documentation</title>
<meta name="description" content="" />
<meta name="description" content="The jobs sub-module contains methods needed to submit Distributed Data Parallel(DDP) jobs to Ray Clusters created by the CodeFlare SDK." />
<link rel="preload stylesheet" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/11.0.1/sanitize.min.css" integrity="sha256-PK9q560IAAa6WVRRh76LtCaI8pjTJ2z11v0miyNNjrs=" crossorigin>
<link rel="preload stylesheet" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/11.0.1/typography.min.css" integrity="sha256-7l/o7C8jubJiy74VsKTidCy1yBkRtiUGbVkYBylBqUg=" crossorigin>
<link rel="stylesheet preload" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/github.min.css" crossorigin>
Expand All @@ -22,6 +22,7 @@
<h1 class="title">Module <code>codeflare_sdk.job.jobs</code></h1>
</header>
<section id="section-intro">
<p>The jobs sub-module contains methods needed to submit Distributed Data Parallel(DDP) jobs to Ray Clusters created by the CodeFlare SDK.</p>
<details class="source">
<summary>
<span>Expand source code</span>
Expand All @@ -40,6 +41,9 @@ <h1 class="title">Module <code>codeflare_sdk.job.jobs</code></h1>
# See the License for the specific language governing permissions and
# limitations under the License.

&#34;&#34;&#34;
The jobs sub-module contains methods needed to submit Distributed Data Parallel(DDP) jobs to Ray Clusters created by the CodeFlare SDK.
&#34;&#34;&#34;

import abc
from typing import TYPE_CHECKING, Optional, Dict, List
Expand Down
3 changes: 3 additions & 0 deletions src/codeflare_sdk/job/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

"""
The jobs sub-module contains methods needed to submit Distributed Data Parallel(DDP) jobs to Ray Clusters created by the CodeFlare SDK.
"""

import abc
from typing import TYPE_CHECKING, Optional, Dict, List
Expand Down

0 comments on commit ed9840b

Please sign in to comment.