We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e46a8c8 commit 92fc326Copy full SHA for 92fc326
src/CMakeLists.txt
@@ -243,6 +243,7 @@ if (USE_ACCEL)
243
target_link_libraries(
244
dbcsr
245
PRIVATE $<$<STREQUAL:${USE_ACCEL},cuda>:CUDA::cudart>
246
+ $<$<STREQUAL:${USE_ACCEL},cuda>:CUDA::cuda_driver>
247
$<$<STREQUAL:${USE_ACCEL},cuda>:CUDA::cublas>
248
$<$<STREQUAL:${USE_ACCEL},cuda>:CUDA::nvrtc>
249
$<$<BOOL:${WITH_CUDA_PROFILING}>:CUDA::nvToolsExt>
tools/vecLibFort/CMakeLists.txt
@@ -1,5 +1,9 @@
1
add_library(vecLibFort STATIC vecLibFort.c)
2
3
+if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
4
+ target_compile_options(vecLibFort PRIVATE -flax-vector-conversions)
5
+endif ()
6
+
7
install(
8
TARGETS vecLibFort
9
EXPORT DBCSRTargets
0 commit comments