Skip to content

Commit 9f02070

Browse files
Update dpnp.ediff1d() function d1ad984
1 parent d311ce1 commit 9f02070

File tree

506 files changed

+1648
-1530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

506 files changed

+1648
-1530
lines changed

pull/1970/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: b57db12eda67a2ae39d7f33b37540ad3
3+
config: d017220be07d8dd1ba9c8e77d419f5b6
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

pull/1970/_modules/dpnp/dpnp_array.html

Lines changed: 54 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_array &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_array &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
@@ -1502,12 +1502,45 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
15021502
<span class="nd">@property</span>
15031503
<span class="k">def</span> <span class="nf">shape</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
15041504
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
1505-
<span class="sd"> Lengths of axes. A tuple of numbers represents size of each dimension.</span>
1505+
<span class="sd"> Tuple of array dimensions.</span>
15061506

1507-
<span class="sd"> Setter of this property involves reshaping without copy. If the array</span>
1508-
<span class="sd"> cannot be reshaped without copy, it raises an exception.</span>
1507+
<span class="sd"> The shape property is usually used to get the current shape of an array,</span>
1508+
<span class="sd"> but may also be used to reshape the array in-place by assigning a tuple</span>
1509+
<span class="sd"> of array dimensions to it. Unlike :obj:`dpnp.reshape`, only non-negative</span>
1510+
<span class="sd"> values are supported to be set as new shape. Reshaping an array in-place</span>
1511+
<span class="sd"> will fail if a copy is required.</span>
15091512

1510-
<span class="sd"> .. seealso: :attr:`numpy.ndarray.shape`</span>
1513+
<span class="sd"> For full documentation refer to :obj:`numpy.ndarray.shape`.</span>
1514+
1515+
<span class="sd"> Note</span>
1516+
<span class="sd"> ----</span>
1517+
<span class="sd"> Using :obj:`dpnp.ndarray.reshape` or :obj:`dpnp.reshape` is the</span>
1518+
<span class="sd"> preferred approach to set new shape of an array.</span>
1519+
1520+
<span class="sd"> See Also</span>
1521+
<span class="sd"> --------</span>
1522+
<span class="sd"> :obj:`dpnp.shape` : Equivalent getter function.</span>
1523+
<span class="sd"> :obj:`dpnp.reshape` : Function similar to setting `shape`.</span>
1524+
<span class="sd"> :obj:`dpnp.ndarray.reshape` : Method similar to setting `shape`.</span>
1525+
1526+
<span class="sd"> Examples</span>
1527+
<span class="sd"> --------</span>
1528+
<span class="sd"> &gt;&gt;&gt; import dpnp as np</span>
1529+
<span class="sd"> &gt;&gt;&gt; x = np.array([1, 2, 3, 4])</span>
1530+
<span class="sd"> &gt;&gt;&gt; x.shape</span>
1531+
<span class="sd"> (4,)</span>
1532+
<span class="sd"> &gt;&gt;&gt; y = np.zeros((2, 3, 4))</span>
1533+
<span class="sd"> &gt;&gt;&gt; y.shape</span>
1534+
<span class="sd"> (2, 3, 4)</span>
1535+
1536+
<span class="sd"> &gt;&gt;&gt; y.shape = (3, 8)</span>
1537+
<span class="sd"> &gt;&gt;&gt; y</span>
1538+
<span class="sd"> array([[ 0., 0., 0., 0., 0., 0., 0., 0.],</span>
1539+
<span class="sd"> [ 0., 0., 0., 0., 0., 0., 0., 0.],</span>
1540+
<span class="sd"> [ 0., 0., 0., 0., 0., 0., 0., 0.]])</span>
1541+
<span class="sd"> &gt;&gt;&gt; y.shape = (3, 6)</span>
1542+
<span class="sd"> ...</span>
1543+
<span class="sd"> TypeError: Can not reshape array of size 24 into (3, 6)</span>
15111544

15121545
<span class="sd"> &quot;&quot;&quot;</span>
15131546

@@ -1518,16 +1551,23 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
15181551
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
15191552
<span class="sd"> Set new lengths of axes.</span>
15201553

1521-
<span class="sd"> A tuple of numbers represents size of each dimension.</span>
1522-
<span class="sd"> It involves reshaping without copy. If the array cannot be reshaped without copy,</span>
1523-
<span class="sd"> it raises an exception.</span>
1554+
<span class="sd"> Modifies array instance in-place by changing its metadata about the</span>
1555+
<span class="sd"> shape and the strides of the array, or raises `AttributeError`</span>
1556+
<span class="sd"> exception if in-place change is not possible.</span>
15241557

1525-
<span class="sd"> .. seealso: :attr:`numpy.ndarray.shape`</span>
1558+
<span class="sd"> Whether the array can be reshape in-place depends on its strides. Use</span>
1559+
<span class="sd"> :obj:`dpnp.reshape` function which always succeeds to reshape the array</span>
1560+
<span class="sd"> by performing a copy if necessary.</span>
15261561

1527-
<span class="sd"> &quot;&quot;&quot;</span>
1562+
<span class="sd"> For full documentation refer to :obj:`numpy.ndarray.shape`.</span>
15281563

1529-
<span class="k">if</span> <span class="ow">not</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">newshape</span><span class="p">,</span> <span class="p">(</span><span class="nb">list</span><span class="p">,</span> <span class="nb">tuple</span><span class="p">)):</span>
1530-
<span class="n">newshape</span> <span class="o">=</span> <span class="p">(</span><span class="n">newshape</span><span class="p">,)</span>
1564+
<span class="sd"> Parameters</span>
1565+
<span class="sd"> ----------</span>
1566+
<span class="sd"> newshape : {tuple, int}</span>
1567+
<span class="sd"> New shape. Only non-negative values are supported. The new shape</span>
1568+
<span class="sd"> may not lead to the change in the number of elements in the array.</span>
1569+
1570+
<span class="sd"> &quot;&quot;&quot;</span>
15311571

15321572
<span class="bp">self</span><span class="o">.</span><span class="n">_array_obj</span><span class="o">.</span><span class="n">shape</span> <span class="o">=</span> <span class="n">newshape</span>
15331573

pull/1970/_modules/dpnp/dpnp_flatiter.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_flatiter &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_flatiter &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_arraycreation.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_arraycreation &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_arraycreation &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_counting.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_counting &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_counting &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_histograms.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_histograms &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_histograms &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_indexing.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_indexing &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_indexing &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_libmath.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_libmath &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_libmath &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_linearalgebra.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_linearalgebra &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_linearalgebra &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

pull/1970/_modules/dpnp/dpnp_iface_logic.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
15-
<title>dpnp.dpnp_iface_logic &mdash; Data Parallel Extension for NumPy 0.16.0dev0+127.g2f8aed7b81 documentation</title>
15+
<title>dpnp.dpnp_iface_logic &mdash; Data Parallel Extension for NumPy 0.16.0dev0+129.gd1ad984108 documentation</title>
1616
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
1717
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1818

@@ -23,7 +23,7 @@
2323

2424
<script src="../../_static/jquery.js?v=5d32c60e"></script>
2525
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
26-
<script src="../../_static/documentation_options.js?v=77b75cb0"></script>
26+
<script src="../../_static/documentation_options.js?v=f962cff3"></script>
2727
<script src="../../_static/doctools.js?v=9a2dae69"></script>
2828
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2929
<script src="../../_static/js/theme.js"></script>
@@ -43,7 +43,7 @@
4343
Data Parallel Extension for NumPy
4444
</a>
4545
<div class="version">
46-
0.16.0dev0+127.g2f8aed7b81
46+
0.16.0dev0+129.gd1ad984108
4747
</div>
4848
<div role="search">
4949
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">

0 commit comments

Comments
 (0)