1414 < link rel ="index " title ="Index " href ="../../genindex.html "> < link rel ="search " title ="Search " href ="../../search.html ">
1515
1616 <!-- Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
17- < title > dpnp.dpnp_array - dpnpData Parallel Extension for NumPy0 .21.0dev0+63.gb7ac2a73403 documentation</ title >
17+ < title > dpnp.dpnp_array - Data Parallel Extension for NumPy (dpnp) 0 .21.0dev1 documentation</ title >
1818 < link rel ="stylesheet " type ="text/css " href ="../../_static/pygments.css?v=b86133f3 " />
1919 < link rel ="stylesheet " type ="text/css " href ="../../_static/styles/furo.css?v=7bdb33bb " />
2020 < link rel ="stylesheet " type ="text/css " href ="../../_static/copybutton.css?v=76b2166b " />
172172 </ label >
173173 </ div >
174174 < div class ="header-center ">
175- < a href ="../../index.html "> < div class ="brand "> < span style =" font-size:2em;font-weight:700 " > dpnp </ span > < br > < small style =" font-size:0.75em " > Data Parallel Extension for NumPy< br > 0.21.0dev0+63.gb7ac2a73403 documentation</ small > </ div > </ a >
175+ < a href ="../../index.html "> < div class ="brand "> Data Parallel Extension for NumPy (dpnp) 0.21.0dev1 documentation</ div > </ a >
176176 </ div >
177177 < div class ="header-right ">
178178 < div class ="theme-toggle-container theme-toggle-header ">
193193
194194 < div class ="sidebar-sticky "> < a class ="sidebar-brand " href ="../../index.html ">
195195
196- < span class ="sidebar-brand-text "> < span style =" font-size:2em;font-weight:700 " > dpnp </ span > < br > < small style =" font-size:0.75em " > Data Parallel Extension for NumPy< br > 0.21.0dev0+63.gb7ac2a73403 documentation</ small > </ span >
196+ < span class ="sidebar-brand-text "> Data Parallel Extension for NumPy (dpnp) 0.21.0dev1 documentation</ span >
197197
198198</ a > < form class ="sidebar-search-container " method ="get " action ="../../search.html " role ="search ">
199199 < input class ="sidebar-search " placeholder ="Search " name ="q " aria-label ="Search ">
534534< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.hstack.html "> dpnp.hstack</ a > </ li >
535535< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.dstack.html "> dpnp.dstack</ a > </ li >
536536< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.column_stack.html "> dpnp.column_stack</ a > </ li >
537- < li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.row_stack.html "> dpnp.row_stack</ a > </ li >
538537< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.split.html "> dpnp.split</ a > </ li >
539538< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.array_split.html "> dpnp.array_split</ a > </ li >
540539< li class ="toctree-l4 "> < a class ="reference internal " href ="../../reference/generated/dpnp.dsplit.html "> dpnp.dsplit</ a > </ li >
994993</ ul >
995994</ li >
996995< li class ="toctree-l1 "> < a class ="reference internal " href ="../../tensor.html "> Tensor (< code class ="docutils literal notranslate "> < span class ="pre "> dpnp.tensor</ span > </ code > )</ a > </ li >
996+ </ ul >
997+ < p class ="caption " role ="heading "> < span class ="caption-text "> Development information</ span > </ p >
998+ < ul >
997999< li class ="toctree-l1 "> < a class ="reference internal " href ="../../dpnp_backend_api.html "> C++ backend API Reference</ a > </ li >
9981000</ ul >
9991001
@@ -2892,7 +2894,7 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
28922894< a class ="viewcode-back " href ="../../reference/generated/dpnp.dpnp_array.dpnp_array.reshape.html#dpnp.dpnp_array.dpnp_array.reshape "> [docs]</ a >
28932895 < span class ="k "> def</ span > < span class ="w "> </ span > < span class ="nf "> reshape</ span > < span class ="p "> (</ span > < span class ="bp "> self</ span > < span class ="p "> ,</ span > < span class ="o "> /</ span > < span class ="p "> ,</ span > < span class ="o "> *</ span > < span class ="n "> shape</ span > < span class ="p "> ,</ span > < span class ="n "> order</ span > < span class ="o "> =</ span > < span class ="s2 "> "C"</ span > < span class ="p "> ,</ span > < span class ="n "> copy</ span > < span class ="o "> =</ span > < span class ="kc "> None</ span > < span class ="p "> ):</ span >
28942896< span class ="w "> </ span > < span class ="sd "> """</ span >
2895- < span class ="sd "> Return an array containing the same data with a new shape .</ span >
2897+ < span class ="sd "> Return a reshaped array without changing data.</ span >
28962898
28972899< span class ="sd "> Refer to :obj:`dpnp.reshape` for full documentation.</ span >
28982900
@@ -3550,6 +3552,7 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
35503552< span class ="sd "> * ``tuple or list of ints``: `i` in the `j`-th place in the</ span >
35513553< span class ="sd "> tuple/list means that the array’s `i`-th axis becomes the</ span >
35523554< span class ="sd "> transposed array’s `j`-th axis.</ span >
3555+ < span class ="sd "> Negative indices can also be used to specify axes.</ span >
35533556< span class ="sd "> * ``n ints``: same as an n-tuple/n-list of the same integers (this</ span >
35543557< span class ="sd "> form is intended simply as a “convenience” alternative to the</ span >
35553558< span class ="sd "> tuple form).</ span >
@@ -3564,8 +3567,8 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
35643567< span class ="sd "> :obj:`dpnp.transpose` : Equivalent function.</ span >
35653568< span class ="sd "> :obj:`dpnp.ndarray.ndarray.T` : Array property returning the array</ span >
35663569< span class ="sd "> transposed.</ span >
3567- < span class ="sd "> :obj:`dpnp.ndarray.reshape` : Give a new shape to an array without</ span >
3568- < span class ="sd "> changing its data.</ span >
3570+ < span class ="sd "> :obj:`dpnp.ndarray.reshape` : Return a reshaped ndarray without</ span >
3571+ < span class ="sd "> changing data.</ span >
35693572
35703573< span class ="sd "> Examples</ span >
35713574< span class ="sd "> --------</ span >
@@ -3766,7 +3769,7 @@ <h1>Source code for dpnp.dpnp_array</h1><div class="highlight"><pre>
37663769
37673770 </ aside >
37683771 </ div >
3769- </ div > < script src ="../../_static/documentation_options.js?v=0f4c5e14 "> </ script >
3772+ </ div > < script src ="../../_static/documentation_options.js?v=3e943f6d "> </ script >
37703773 < script src ="../../_static/doctools.js?v=9bcbadda "> </ script >
37713774 < script src ="../../_static/sphinx_highlight.js?v=dc90522c "> </ script >
37723775 < script src ="../../_static/scripts/furo.js?v=46bd48cc "> </ script >
0 commit comments