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 a145e53 commit 5318a96Copy full SHA for 5318a96
CMakeLists.txt
@@ -352,9 +352,19 @@ if(USE_CUDA)
352
endif()
353
if (ENABLE_CUSOLVERMP)
354
add_compile_definitions(__CUSOLVERMP)
355
+ find_library(CAL_LIBRARY
356
+ NAMES cal
357
+ PATHS ${CAL_CUSOLVERMP_PATH}
358
+ NO_DEFAULT_PATH
359
+ )
360
+ find_library(CUSOLVERMP_LIBRARY
361
+ NAMES cusolverMp
362
363
364
365
target_link_libraries(${ABACUS_BIN_NAME}
- cal
- cusolverMp
366
+ ${CAL_LIBRARY}
367
+ ${CUSOLVERMP_LIBRARY}
368
)
369
370
0 commit comments