Skip to content

Commit dd2a39e

Browse files
author
array-api-bot
committed
Deploy: 6d205d7
1 parent 6a870d4 commit dd2a39e

13 files changed

+49
-5
lines changed

draft/API_specification/generated/array_api.array.__eq__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,10 @@ <h1 id="api-specification-generated-array-api-array-eq--page-root">__eq__<a clas
481481
<p class="admonition-title">Note</p>
482482
<p>Element-wise results, including special cases, must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.equal.html#array_api.equal" title="array_api.equal"><code class="xref py py-func docutils literal notranslate"><span class="pre">equal()</span></code></a>.</p>
483483
</div>
484+
<div class="admonition note">
485+
<p class="admonition-title">Note</p>
486+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
487+
</div>
484488
</dd></dl>
485489
</section>
486490

draft/API_specification/generated/array_api.array.__ge__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,10 @@ <h1 id="api-specification-generated-array-api-array-ge--page-root">__ge__<a clas
485485
<p class="admonition-title">Note</p>
486486
<p>Element-wise results must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.greater_equal.html#array_api.greater_equal" title="array_api.greater_equal"><code class="xref py py-func docutils literal notranslate"><span class="pre">greater_equal()</span></code></a>.</p>
487487
</div>
488+
<div class="admonition note">
489+
<p class="admonition-title">Note</p>
490+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
491+
</div>
488492
</dd></dl>
489493
</section>
490494

draft/API_specification/generated/array_api.array.__gt__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,10 @@ <h1 id="api-specification-generated-array-api-array-gt--page-root">__gt__<a clas
485485
<p class="admonition-title">Note</p>
486486
<p>Element-wise results must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.greater.html#array_api.greater" title="array_api.greater"><code class="xref py py-func docutils literal notranslate"><span class="pre">greater()</span></code></a>.</p>
487487
</div>
488+
<div class="admonition note">
489+
<p class="admonition-title">Note</p>
490+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
491+
</div>
488492
</dd></dl>
489493
</section>
490494

draft/API_specification/generated/array_api.array.__le__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,10 @@ <h1 id="api-specification-generated-array-api-array-le--page-root">__le__<a clas
485485
<p class="admonition-title">Note</p>
486486
<p>Element-wise results must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.less_equal.html#array_api.less_equal" title="array_api.less_equal"><code class="xref py py-func docutils literal notranslate"><span class="pre">less_equal()</span></code></a>.</p>
487487
</div>
488+
<div class="admonition note">
489+
<p class="admonition-title">Note</p>
490+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
491+
</div>
488492
</dd></dl>
489493
</section>
490494

draft/API_specification/generated/array_api.array.__lt__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,10 @@ <h1 id="api-specification-generated-array-api-array-lt--page-root">__lt__<a clas
485485
<p class="admonition-title">Note</p>
486486
<p>Element-wise results must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.less.html#array_api.less" title="array_api.less"><code class="xref py py-func docutils literal notranslate"><span class="pre">less()</span></code></a>.</p>
487487
</div>
488+
<div class="admonition note">
489+
<p class="admonition-title">Note</p>
490+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
491+
</div>
488492
</dd></dl>
489493
</section>
490494

draft/API_specification/generated/array_api.array.__ne__.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,10 @@ <h1 id="api-specification-generated-array-api-array-ne--page-root">__ne__<a clas
482482
<p class="admonition-title">Note</p>
483483
<p>Element-wise results, including special cases, must equal the results returned by the equivalent element-wise function <a class="reference internal" href="array_api.not_equal.html#array_api.not_equal" title="array_api.not_equal"><code class="xref py py-func docutils literal notranslate"><span class="pre">not_equal()</span></code></a>.</p>
484484
</div>
485+
<div class="admonition note">
486+
<p class="admonition-title">Note</p>
487+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
488+
</div>
485489
<div class="versionchanged">
486490
<p><span class="versionmodified changed">Changed in version 2022.12: </span>Added complex data type support.</p>
487491
</div>

draft/API_specification/generated/array_api.equal.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,10 @@ <h1 id="api-specification-generated-array-api-equal--page-root">equal<a class="h
498498
<p class="admonition-title">Note</p>
499499
<p>For discussion of complex number equality, see <a class="reference internal" href="../../design_topics/complex_numbers.html#complex-numbers"><span class="std std-ref">Complex Numbers</span></a>.</p>
500500
</div>
501+
<div class="admonition note">
502+
<p class="admonition-title">Note</p>
503+
<p>Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p>
504+
</div>
501505
<div class="versionchanged">
502506
<p><span class="versionmodified changed">Changed in version 2022.12: </span>Added complex data type support.</p>
503507
</div>

draft/API_specification/generated/array_api.greater.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,10 @@ <h1 id="api-specification-generated-array-api-greater--page-root">greater<a clas
478478
</ul>
479479
</dd>
480480
<dt class="field-even">Returns<span class="colon">:</span></dt>
481-
<dd class="field-even"><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p>
481+
<dd class="field-even"><ul class="simple">
482+
<li><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p></li>
483+
<li><p><strong>.. note::</strong> – Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p></li>
484+
</ul>
482485
</dd>
483486
</dl>
484487
</dd></dl>

draft/API_specification/generated/array_api.greater_equal.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,10 @@ <h1 id="api-specification-generated-array-api-greater-equal--page-root">greater_
478478
</ul>
479479
</dd>
480480
<dt class="field-even">Returns<span class="colon">:</span></dt>
481-
<dd class="field-even"><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p>
481+
<dd class="field-even"><ul class="simple">
482+
<li><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p></li>
483+
<li><p><strong>.. note::</strong> – Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p></li>
484+
</ul>
482485
</dd>
483486
</dl>
484487
</dd></dl>

draft/API_specification/generated/array_api.less.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,10 @@ <h1 id="api-specification-generated-array-api-less--page-root">less<a class="hea
478478
</ul>
479479
</dd>
480480
<dt class="field-even">Returns<span class="colon">:</span></dt>
481-
<dd class="field-even"><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p>
481+
<dd class="field-even"><ul class="simple">
482+
<li><p><strong>out</strong> (<em>array</em>) – an array containing the element-wise results. The returned array must have a data type of <code class="docutils literal notranslate"><span class="pre">bool</span></code>.</p></li>
483+
<li><p><strong>.. note::</strong> – Comparison of arrays without a corresponding promotable data type (see <a class="reference internal" href="../type_promotion.html#type-promotion"><span class="std std-ref">Type Promotion Rules</span></a>) is undefined and thus implementation-dependent.</p></li>
484+
</ul>
482485
</dd>
483486
</dl>
484487
</dd></dl>

0 commit comments

Comments
 (0)