Skip to content

Commit

Permalink
Deploy: c492972
Browse files Browse the repository at this point in the history
  • Loading branch information
array-api-bot committed Dec 12, 2024
1 parent c1fdaae commit 7c6ea83
Show file tree
Hide file tree
Showing 9 changed files with 592 additions and 17 deletions.
562 changes: 562 additions & 0 deletions draft/API_specification/generated/array_api.cumulative_prod.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="next" title="max" href="array_api.max.html" />
<link rel="prev" title="Statistical Functions" href="../statistical_functions.html" />
<link rel="prev" title="cumulative_prod" href="array_api.cumulative_prod.html" />

<link rel="apple-touch-icon" href="../../_static/images/apple-icon-152x152.png"/>

Expand Down Expand Up @@ -514,7 +514,7 @@ <h1 id="api-specification-generated-array-api-cumulative-sum--page-root">cumulat
<div class="md-footer-nav">
<nav class="md-footer-nav__inner md-grid">

<a href="../statistical_functions.html" title="Statistical Functions"
<a href="array_api.cumulative_prod.html" title="cumulative_prod"
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
Expand All @@ -523,7 +523,7 @@ <h1 id="api-specification-generated-array-api-cumulative-sum--page-root">cumulat
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span
class="md-footer-nav__direction"> "Previous" </span> Statistical Functions </span>
class="md-footer-nav__direction"> "Previous" </span> cumulative_prod </span>
</div>
</a>

Expand Down
1 change: 1 addition & 0 deletions draft/API_specification/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@
</li>
<li class="toctree-l1"><a class="reference internal" href="statistical_functions.html">Statistical Functions</a><ul>
<li class="toctree-l2"><a class="reference internal" href="statistical_functions.html#objects-in-api">Objects in API</a><ul>
<li class="toctree-l3"><a class="reference internal" href="generated/array_api.cumulative_prod.html">cumulative_prod</a></li>
<li class="toctree-l3"><a class="reference internal" href="generated/array_api.cumulative_sum.html">cumulative_sum</a></li>
<li class="toctree-l3"><a class="reference internal" href="generated/array_api.max.html">max</a></li>
<li class="toctree-l3"><a class="reference internal" href="generated/array_api.mean.html">mean</a></li>
Expand Down
25 changes: 14 additions & 11 deletions draft/API_specification/statistical_functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<script src="../_static/copybutton.js?v=f281be69"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="cumulative_sum" href="generated/array_api.cumulative_sum.html" />
<link rel="next" title="cumulative_prod" href="generated/array_api.cumulative_prod.html" />
<link rel="prev" title="sort" href="generated/array_api.sort.html" />

<link rel="apple-touch-icon" href="../_static/images/apple-icon-152x152.png"/>
Expand Down Expand Up @@ -485,28 +485,31 @@ <h1 id="api-specification-statistical-functions--page-root">Statistical Function
<h2 id="objects-in-api">Objects in API<a class="headerlink" href="#objects-in-api" title="Link to this heading"></a></h2>
<table class="autosummary longtable docutils align-default">
<tbody>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.cumulative_sum.html#array_api.cumulative_sum" title="array_api.cumulative_sum"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cumulative_sum</span></code></a>(x, /, *, axis=None, dtype=None, include_initial=False)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.cumulative_prod.html#array_api.cumulative_prod" title="array_api.cumulative_prod"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cumulative_prod</span></code></a>(x, /, *, axis=None, dtype=None, include_initial=False)</p></td>
<td><p>Calculates the cumulative product of elements in the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.cumulative_sum.html#array_api.cumulative_sum" title="array_api.cumulative_sum"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cumulative_sum</span></code></a>(x, /, *, axis=None, dtype=None, include_initial=False)</p></td>
<td><p>Calculates the cumulative sum of elements in the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.max.html#array_api.max" title="array_api.max"><code class="xref py py-obj docutils literal notranslate"><span class="pre">max</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.max.html#array_api.max" title="array_api.max"><code class="xref py py-obj docutils literal notranslate"><span class="pre">max</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<td><p>Calculates the maximum value of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.mean.html#array_api.mean" title="array_api.mean"><code class="xref py py-obj docutils literal notranslate"><span class="pre">mean</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.mean.html#array_api.mean" title="array_api.mean"><code class="xref py py-obj docutils literal notranslate"><span class="pre">mean</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<td><p>Calculates the arithmetic mean of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.min.html#array_api.min" title="array_api.min"><code class="xref py py-obj docutils literal notranslate"><span class="pre">min</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.min.html#array_api.min" title="array_api.min"><code class="xref py py-obj docutils literal notranslate"><span class="pre">min</span></code></a>(x, /, *, axis=None, keepdims=False)</p></td>
<td><p>Calculates the minimum value of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.prod.html#array_api.prod" title="array_api.prod"><code class="xref py py-obj docutils literal notranslate"><span class="pre">prod</span></code></a>(x, /, *, axis=None, dtype=None, keepdims=False)</p></td>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.prod.html#array_api.prod" title="array_api.prod"><code class="xref py py-obj docutils literal notranslate"><span class="pre">prod</span></code></a>(x, /, *, axis=None, dtype=None, keepdims=False)</p></td>
<td><p>Calculates the product of input array <code class="docutils literal notranslate"><span class="pre">x</span></code> elements.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.std.html#array_api.std" title="array_api.std"><code class="xref py py-obj docutils literal notranslate"><span class="pre">std</span></code></a>(x, /, *, axis=None, correction=0.0, keepdims=False)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.std.html#array_api.std" title="array_api.std"><code class="xref py py-obj docutils literal notranslate"><span class="pre">std</span></code></a>(x, /, *, axis=None, correction=0.0, keepdims=False)</p></td>
<td><p>Calculates the standard deviation of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.sum.html#array_api.sum" title="array_api.sum"><code class="xref py py-obj docutils literal notranslate"><span class="pre">sum</span></code></a>(x, /, *, axis=None, dtype=None, keepdims=False)</p></td>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.sum.html#array_api.sum" title="array_api.sum"><code class="xref py py-obj docutils literal notranslate"><span class="pre">sum</span></code></a>(x, /, *, axis=None, dtype=None, keepdims=False)</p></td>
<td><p>Calculates the sum of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="generated/array_api.var.html#array_api.var" title="array_api.var"><code class="xref py py-obj docutils literal notranslate"><span class="pre">var</span></code></a>(x, /, *, axis=None, correction=0.0, keepdims=False)</p></td>
<tr class="row-odd"><td><p><a class="reference internal" href="generated/array_api.var.html#array_api.var" title="array_api.var"><code class="xref py py-obj docutils literal notranslate"><span class="pre">var</span></code></a>(x, /, *, axis=None, correction=0.0, keepdims=False)</p></td>
<td><p>Calculates the variance of the input array <code class="docutils literal notranslate"><span class="pre">x</span></code>.</p></td>
</tr>
</tbody>
Expand Down Expand Up @@ -538,12 +541,12 @@ <h2 id="objects-in-api">Objects in API<a class="headerlink" href="#objects-in-ap
</a>


<a href="generated/array_api.cumulative_sum.html" title="cumulative_sum"
<a href="generated/array_api.cumulative_prod.html" title="cumulative_prod"
class="md-flex md-footer-nav__link md-footer-nav__link--next"
rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
class="md-flex__ellipsis"> <span
class="md-footer-nav__direction"> "Next" </span> cumulative_sum </span>
class="md-footer-nav__direction"> "Next" </span> cumulative_prod </span>
</div>
<div class="md-flex__cell md-flex__cell--shrink"><i
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.. currentmodule:: array_api

cumulative_prod
===============

.. autofunction:: cumulative_prod
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Objects in API
:toctree: generated
:template: method.rst

cumulative_prod
cumulative_sum
max
mean
Expand Down
6 changes: 4 additions & 2 deletions draft/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -500,10 +500,10 @@ <h2 id="C">C</h2>
</li>
<li><a href="API_specification/generated/array_api.concat.html#array_api.concat">concat() (in module array_api)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="API_specification/generated/array_api.conj.html#array_api.conj">conj() (in module array_api)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="API_specification/generated/array_api.copysign.html#array_api.copysign">copysign() (in module array_api)</a>
</li>
<li><a href="API_specification/generated/array_api.cos.html#array_api.cos">cos() (in module array_api)</a>
Expand All @@ -513,6 +513,8 @@ <h2 id="C">C</h2>
<li><a href="API_specification/generated/array_api.count_nonzero.html#array_api.count_nonzero">count_nonzero() (in module array_api)</a>
</li>
<li><a href="extensions/generated/array_api.linalg.cross.html#array_api.linalg.cross">cross() (in module array_api.linalg)</a>
</li>
<li><a href="API_specification/generated/array_api.cumulative_prod.html#array_api.cumulative_prod">cumulative_prod() (in module array_api)</a>
</li>
<li><a href="API_specification/generated/array_api.cumulative_sum.html#array_api.cumulative_sum">cumulative_sum() (in module array_api)</a>
</li>
Expand Down
Binary file modified draft/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion draft/searchindex.js

Large diffs are not rendered by default.

0 comments on commit 7c6ea83

Please sign in to comment.