Skip to content
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 2026-RIKEN/docker/Dockerfile.benchpark
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ USER ${NB_USER}

RUN git clone https://github.com/LLNL/benchpark.git ${HOME}/benchpark && \
cd ${HOME}/benchpark && \
git checkout -b develop-2025-12-11 develop-2025-12-11 && \
git checkout -b develop-2025-12-12 develop-2025-12-12 && \
git submodule update --init --recursive

USER root
Expand Down
4 changes: 2 additions & 2 deletions 2026-RIKEN/docker/Dockerfile.caliper
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN python3 -m venv /opt/global_py_venv
RUN . /opt/global_py_venv/bin/activate && \
python3 -m pip install pybind11

ENV CALI_INSTALL_PREFIX=/usr \
ENV CALI_INSTALL_PREFIX=${HOME}/Caliper/install \
GIT_CLONE_STAGING_DIR=/tmp

RUN git clone https://github.com/LLNL/Caliper.git ${GIT_CLONE_STAGING_DIR}/Caliper && \
Expand Down Expand Up @@ -128,4 +128,4 @@ RUN echo 'export PATH=/usr/bin:$PATH' >> ${HOME}/.bash_profile && \
echo 'export LD_LIBRARY_PATH=/usr/lib:/usr/lib64:$LD_LIBRARY_PATH' >> ${HOME}/.bash_profile

USER ${NB_USER}
WORKDIR ${HOME}
WORKDIR ${HOME}
2 changes: 1 addition & 1 deletion 2026-RIKEN/docker/Dockerfile.spawn
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN . /opt/global_py_venv/bin/activate && \
COPY ./tutorial-code/caliper-tutorial/apps /tmp/caliper-tutorial/apps/
COPY ./tutorial-code/caliper-tutorial/cmake /tmp/caliper-tutorial/cmake/

ENV CALI_TUTORIAL_INSTALL_PREFIX=/usr
ENV CALI_TUTORIAL_INSTALL_PREFIX=${HOME}/Caliper/install

RUN cmake \
-B /tmp/build-basic-example \
Expand Down
Loading