Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc. documentation updates #32

Merged
merged 5 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Run clang-format style check for C programs.
uses: DoozyX/clang-format-lint-action@v0.11
uses: DoozyX/clang-format-lint-action@v0.14
with:
source: '.'
extensions: 'c,h,cpp,hpp'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Run clang-format style check for C programs.
uses: DoozyX/clang-format-lint-action@v0.11
uses: DoozyX/clang-format-lint-action@v0.14
with:
source: '.'
extensions: 'c,h,cpp,hpp'
Expand Down
4 changes: 2 additions & 2 deletions docs/pdf-docs/cache_vol.bib
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ @article{lammps
@misc{vol,
title = {{HDF5} {VOL} user guide},
author = {{The HDF Group}},
note = {https://hzheng@bitbucket.hdfgroup.org/scm/hdffv/hdf5doc.git, accessed on September 25, 2020},
note = {https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_5/documentation/doxygen/_h5_v_l__u_g.html#sec_vol, accessed on September 25, 2020},
}

@misc{async_vol,
Expand All @@ -77,7 +77,7 @@ @misc{async_vol

@misc{hdf5,
title = {{HDF5}},
note = {https://portal.hdfgroup.org/display/HDF5/HDF5, accessed on September 25, 2020}
note = {https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_5/documentation/doxygen/index.html, accessed on September 25, 2020}
}

@article{hacc,
Expand Down
4 changes: 2 additions & 2 deletions docs/pdf-docs/cache_vol.tex
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ \subsection{Cache management policy and APIs}
\subsection{Using local storage cache}
Finally, in real applications, in order to gain benefit from this local-storage implementation, one should insert enough compute work between \function{H5Dwrite} / \function{H5Dread} and \function{H5Dclose}. Below are examples of using the Cache VOL.
\begin{itemize}
\item Parallel write \footnote{A complete version of the source code for parallel write: \\https://bitbucket.hdfgroup.org/projects/HDF5VOL/repos/cache/browse/benchmarks/test\_write\_cache.cpp}
\item Parallel write \footnote{A complete version of the source code for parallel write: \\https://github.com/HDFGroup/vol-cache/blob/develop/benchmarks/test\_write\_cache.cpp}
\begin{lstlisting}[language=C++]
#include "H5LS.h"
...
Expand All @@ -207,7 +207,7 @@ \subsection{Using local storage cache}
}
H5Fclose()
\end{lstlisting}
\item Parallel read \footnote{A complete version of the source code for parallel read: \\https://bitbucket.hdfgroup.org/projects/HDF5VOL/repos/cache/browse/benchmarks/test\_read\_cache.cpp}
\item Parallel read \footnote{A complete version of the source code for parallel read: \\https://github.com/HDFGroup/vol-cache/blob/develop/benchmarks/test\_read\_cache.cpp}
\begin{lstlisting}[language=C++]
#include "H5LS.h"
//creating local storage variable through property list
Expand Down
4 changes: 2 additions & 2 deletions docs/source/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Installation

.. code-block::

git clone https://github.com/hpc-io/vol-async.git
git clone https://github.com/HDFGroup/vol-async.git
cd vol-async
mkdir build
cd build
Expand All @@ -55,7 +55,7 @@ Installation

.. code-block::

git clone https://github.com/hpc-io/vol-cache.git
git clone https://github.com/HDFGroup/vol-cache.git
cd vol-cache
mkdir build
cd build
Expand Down