Skip to content

Commit

Permalink
TEMP: Check pika version
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Sep 16, 2024
1 parent 673885c commit 6199094
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ void initializeGpuPool(int device, std::size_t num_np_streams, std::size_t num_h
);
#if PIKA_VERSION_FULL < 0x001D00 // < 0.29.0
dlaf::internal::silenceUnusedWarningFor(num_blas_handles, num_lapack_handles);
static_assert(false, "using pika < 0.29.0");
#else
static_assert(false, "using pika >= 0.29.0");
#endif
}

Expand Down

0 comments on commit 6199094

Please sign in to comment.