summaryrefslogtreecommitdiffstats
path: root/develop/_intro_par_cont_hyperslab.html
diff options
context:
space:
mode:
Diffstat (limited to 'develop/_intro_par_cont_hyperslab.html')
-rw-r--r--develop/_intro_par_cont_hyperslab.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/develop/_intro_par_cont_hyperslab.html b/develop/_intro_par_cont_hyperslab.html
index aa7fad1..e85be80 100644
--- a/develop/_intro_par_cont_hyperslab.html
+++ b/develop/_intro_par_cont_hyperslab.html
@@ -37,7 +37,7 @@
<td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>
- &#160;<span id="projectnumber">1.15.0.184445f</span>
+ &#160;<span id="projectnumber">1.15.0.5f5f5f0</span>
</div>
<div id="projectbrief">API Reference</div>
</td>
@@ -168,7 +168,7 @@ Writing a Contiguous Hyperslab in C</h1>
<div class="ttc" id="agroup___h5_s_html_ga8e35eea5738b4805856eac7d595254ae"><div class="ttname"><a href="group___h5_s.html#ga8e35eea5738b4805856eac7d595254ae">H5Screate_simple</a></div><div class="ttdeci">hid_t H5Screate_simple(int rank, const hsize_t dims[], const hsize_t maxdims[])</div><div class="ttdoc">Creates a new simple dataspace and opens it for access.</div></div>
</div><!-- fragment --><p>Below is the example program: </p><table class="doxtable">
<tr>
-<td><a href="https://github.com/HDFGroup/hdf5-examples/blob/master/C/H5Parallel/ph5_hyperslab_by_row.c">hyperslab_by_row.c</a> </td></tr>
+<td><a href="https://github.com/HDFGroup/hdf5/blob/develop/HDF5Examples/C/H5PAR/ph5_hyperslab_by_row.c">hyperslab_by_row.c</a> </td></tr>
</table>
<p>If using this example with 4 processes, then, </p><ul>
<li>Process 0 writes "10"s to the file. </li>
@@ -244,7 +244,7 @@ Writing a Contiguous Hyperslab in Fortran</h1>
<div class="ttc" id="agroup___f_h5_s_html_ga82aeb8a0da64f827e8a852eaab701ff9"><div class="ttname"><a href="group___f_h5_s.html#ga82aeb8a0da64f827e8a852eaab701ff9">h5s::h5sselect_hyperslab_f</a></div><div class="ttdeci">subroutine h5sselect_hyperslab_f(space_id, OPERATOR, start, count, hdferr, stride, BLOCK)</div><div class="ttdoc">Selects a hyperslab region to add to the current selected region.</div><div class="ttdef"><b>Definition:</b> H5Sff.F90:906</div></div>
</div><!-- fragment --><p>Below is the F90 example program which illustrates how to write contiguous hyperslabs by column in Parallel HDF5: </p><table class="doxtable">
<tr>
-<td><a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_col.F90">hyperslab_by_col.F90</a> </td></tr>
+<td><a href="https://github.com/HDFGroup/hdf5/blob/develop/HDF5Examples/FORTRAN/H5PAR/ph5_f90_hyperslab_by_col.F90">hyperslab_by_col.F90</a> </td></tr>
</table>
<p>If you run this program with 4 processes and look at the output with h5dump you will notice that the output is much like the output shown above for the C example. This is because h5dump is written in C. The data would be displayed in columns if it was printed using Fortran 90 code.</p>
<hr />