Skip to content

Commit 3fb5506

Browse files
committed
Fix
1 parent a6c83a7 commit 3fb5506

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/trigger-hpsf-gitlab-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ jobs:
121121
shell: bash
122122
run: |
123123
STATUS=${{ steps.wait.outputs.final_status }}
124+
PIPELINE_ID=${{ steps.trigger.outputs.pipeline_id }}
124125
PIPELINE_URL=${{ steps.trigger.outputs.pipeline_url }}
125-
COMMENT="GitLab CI finished with status: **$STATUS**. See details at ${PIPELINE_URL}."
126+
COMMENT="GitLab CI ${PIPELINE_ID} finished with status: **$STATUS**. See details at ${PIPELINE_URL}."
126127
127128
gh api \
128129
repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments \

Src/LinearSolvers/AMReX_SpMV.H

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,11 @@ void SpMV (AlgVector<T>& y, SpMatrix<T> const& A, AlgVector<T> const& x)
183183
mkl::sparse::gemv(Gpu::Device::streamQueue(), mkl::transpose::nontrans,
184184
T(1), handle, px, T(0), py);
185185

186-
#endif
187-
188186
auto ev = mkl::sparse::release_matrix_handle(Gpu::Device::streamQueue(), &handle);
189187
ev.wait();
190188

189+
#endif
190+
191191
AMREX_GPU_ERROR_CHECK();
192192

193193
#else

0 commit comments

Comments
 (0)