You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

598 lines
22 KiB

  1. add_custom_target(resources)
  2. add_custom_target(test-resources)
  3. set(STORM_3RDPARTY_SOURCE_DIR ${PROJECT_SOURCE_DIR}/resources/3rdparty)
  4. set(STORM_3RDPARTY_BINARY_DIR ${PROJECT_BINARY_DIR}/resources/3rdparty)
  5. #############################################################
  6. ##
  7. ## l3pp
  8. ##
  9. #############################################################
  10. # Do not take a branch, needs internet connection.
  11. ExternalProject_Add(
  12. l3pp_ext
  13. GIT_REPOSITORY https://github.com/hbruintjes/l3pp.git
  14. GIT_TAG e4f8d7fe6c328849aff34d2dfd6fd592c14070d5
  15. SOURCE_DIR ${STORM_3RDPARTY_SOURCE_DIR}/l3pp
  16. UPDATE_COMMAND ""
  17. CONFIGURE_COMMAND ""
  18. BUILD_COMMAND ""
  19. INSTALL_COMMAND ""
  20. LOG_INSTALL ON
  21. )
  22. ExternalProject_Get_Property(l3pp_ext source_dir)
  23. set(l3pp_INCLUDE "${source_dir}/")
  24. add_imported_library_interface(l3pp "${l3pp_INCLUDE}")
  25. list(APPEND STORM_DEP_TARGETS l3pp)
  26. #############################################################
  27. ##
  28. ## gmm
  29. ##
  30. #############################################################
  31. add_imported_library_interface(gmm "${PROJECT_SOURCE_DIR}/resources/3rdparty/gmm-5.0/include")
  32. list(APPEND STORM_DEP_TARGETS gmm)
  33. #############################################################
  34. ##
  35. ## Eigen
  36. ##
  37. #############################################################
  38. add_imported_library_interface(Eigen33 "${PROJECT_SOURCE_DIR}/resources/3rdparty/eigen-3.3-beta1")
  39. list(APPEND STORM_DEP_TARGETS Eigen33)
  40. #############################################################
  41. ##
  42. ## Boost
  43. ##
  44. #############################################################
  45. # Boost Option variables
  46. set(Boost_USE_STATIC_LIBS ${USE_BOOST_STATIC_LIBRARIES})
  47. set(Boost_USE_MULTITHREADED ON)
  48. set(Boost_USE_STATIC_RUNTIME OFF)
  49. find_package(Boost 1.61.0 QUIET REQUIRED COMPONENTS filesystem system)
  50. if (NOT Boost_FOUND)
  51. if (Boost_VERSION)
  52. message(FATAL_ERROR "The required Boost version is 1.61.0 or newer, however, only ${Boost_VERSION} was found.")
  53. else ()
  54. message(FATAL_ERROR "Boost was not found.")
  55. endif ()
  56. endif ()
  57. if ((NOT Boost_LIBRARY_DIRS) OR ("${Boost_LIBRARY_DIRS}" STREQUAL ""))
  58. set(Boost_LIBRARY_DIRS "${Boost_INCLUDE_DIRS}/stage/lib")
  59. endif ()
  60. set(CNTVAR 1)
  61. foreach(BOOSTLIB ${Boost_LIBRARIES})
  62. add_imported_library(target-boost-${CNTVAR} SHARED ${BOOSTLIB} ${Boost_INCLUDE_DIRS})
  63. list(APPEND STORM_DEP_TARGETS target-boost-${CNTVAR}_SHARED)
  64. MATH(EXPR CNTVAR "${CNTVAR}+1")
  65. endforeach()
  66. message(STATUS "Storm - Using boost ${Boost_VERSION} (library version ${Boost_LIB_VERSION}).")
  67. # set the information for the config header
  68. set(STORM_BOOST_INCLUDE_DIR "${Boost_INCLUDE_DIRS}")
  69. #############################################################
  70. ##
  71. ## ExprTk
  72. ##
  73. #############################################################
  74. # Use the shipped version of ExprTK
  75. message (STATUS "Storm - Including ExprTk.")
  76. add_imported_library_interface(ExprTk "${PROJECT_SOURCE_DIR}/resources/3rdparty/exprtk")
  77. list(APPEND STORM_DEP_TARGETS ExprTk)
  78. #############################################################
  79. ##
  80. ## Sparsepp
  81. ##
  82. #############################################################
  83. # Use the shipped version of Sparsepp
  84. message (STATUS "Storm - Including Sparsepp.")
  85. include_directories("${PROJECT_SOURCE_DIR}/resources/3rdparty/sparsepp")
  86. # Add sparsepp.h to the headers that are copied to the include directory in thebuild directory.
  87. add_custom_command(
  88. OUTPUT ${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp/sparsepp.h
  89. COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp
  90. COMMAND ${CMAKE_COMMAND} -E copy ${PROJECT_SOURCE_DIR}/resources/3rdparty/sparsepp/sparsepp.h ${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp/sparsepp.h
  91. DEPENDS ${PROJECT_SOURCE_DIR}/resources/3rdparty/sparsepp/sparsepp.h
  92. )
  93. list(APPEND STORM_RESOURCES_HEADERS "${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp/sparsepp.h")
  94. #############################################################
  95. ##
  96. ## ModernJSON
  97. ##
  98. #############################################################
  99. #use the shipped version of modernjson
  100. message (STATUS "Storm - Including ModernJSON.")
  101. add_imported_library_interface(ModernJSON "${PROJECT_SOURCE_DIR}/resources/3rdparty/modernjson/src/")
  102. list(APPEND STORM_DEP_TARGETS ModernJSON)
  103. #############################################################
  104. ##
  105. ## Z3 (optional)
  106. ##
  107. #############################################################
  108. find_package(Z3 QUIET)
  109. # Z3 Defines
  110. set(STORM_HAVE_Z3 ${Z3_FOUND})
  111. if(Z3_FOUND)
  112. message (STATUS "Storm - Linking with Z3.")
  113. add_imported_library(z3 SHARED ${Z3_LIBRARIES} ${Z3_INCLUDE_DIRS})
  114. list(APPEND STORM_DEP_TARGETS z3_SHARED)
  115. endif(Z3_FOUND)
  116. #############################################################
  117. ##
  118. ## glpk
  119. ##
  120. #############################################################
  121. include(${STORM_3RDPARTY_SOURCE_DIR}/include_glpk.cmake)
  122. #############################################################
  123. ##
  124. ## Gurobi (optional)
  125. ##
  126. #############################################################
  127. if (STORM_USE_GUROBI)
  128. find_package(Gurobi QUIET REQUIRED)
  129. set(STORM_HAVE_GUROBI ${GUROBI_FOUND})
  130. if (GUROBI_FOUND)
  131. message (STATUS "Storm - Linking with Gurobi.")
  132. add_imported_library(Gurobi "" ${GUROBI_LIBRARY} ${GUROBI_INCLUDE_DIRS})
  133. list(APPEND STORM_DEP_TARGETS Gurobi)
  134. endif()
  135. else()
  136. set(STORM_HAVE_GUROBI OFF)
  137. endif()
  138. #############################################################
  139. ##
  140. ## CUDD
  141. ##
  142. #############################################################
  143. include(${STORM_3RDPARTY_SOURCE_DIR}/include_cudd.cmake)
  144. #############################################################
  145. ##
  146. ## cpptemplate
  147. ##
  148. #############################################################
  149. include(${STORM_3RDPARTY_SOURCE_DIR}/include_cpptemplate.cmake)
  150. #############################################################
  151. ##
  152. ## carl
  153. ##
  154. #############################################################
  155. set(STORM_HAVE_CARL OFF)
  156. if(USE_CARL)
  157. if (NOT STORM_FORCE_SHIPPED_CARL)
  158. find_package(carl QUIET)
  159. endif()
  160. if(carl_FOUND AND NOT STORM_FORCE_SHIPPED_CARL)
  161. set(STORM_SHIPPED_CARL OFF)
  162. set(STORM_HAVE_CARL ON)
  163. message(STATUS "Storm - Use system version of carl.")
  164. message(STATUS "Storm - Linking with carl ${carl_VERSION} (CARL_USE_CLN_NUMBERS: ${CARL_USE_CLN_NUMBERS}).")
  165. set(STORM_HAVE_CLN ${CARL_USE_CLN_NUMBERS})
  166. else()
  167. set(STORM_SHIPPED_CARL ON)
  168. # The first external project will be built at *configure stage*
  169. message("START CARL CONFIG PROCESS")
  170. file(MAKE_DIRECTORY ${STORM_3RDPARTY_BINARY_DIR}/carl_download)
  171. execute_process(
  172. COMMAND ${CMAKE_COMMAND} ${STORM_3RDPARTY_SOURCE_DIR}/carl "-DSTORM_3RDPARTY_BINARY_DIR=${STORM_3RDPARTY_BINARY_DIR}"
  173. WORKING_DIRECTORY ${STORM_3RDPARTY_BINARY_DIR}/carl_download
  174. OUTPUT_VARIABLE carlconfig_out
  175. RESULT_VARIABLE carlconfig_result)
  176. if(NOT carlconfig_result)
  177. message("${carlconfig_out}")
  178. endif()
  179. execute_process(
  180. COMMAND ${CMAKE_COMMAND} --build . --target carl-config
  181. WORKING_DIRECTORY ${STORM_3RDPARTY_BINARY_DIR}/carl_download
  182. OUTPUT_VARIABLE carlconfig_out
  183. RESULT_VARIABLE carlconfig_result
  184. )
  185. if(NOT carlconfig_result)
  186. message("${carlconfig_out}")
  187. endif()
  188. message("END CARL CONFIG PROCESS")
  189. message(STATUS "Storm - Using shipped version of carl.")
  190. ExternalProject_Add(
  191. carl
  192. SOURCE_DIR ${STORM_3RDPARTY_BINARY_DIR}/carl
  193. CONFIGURE_COMMAND ""
  194. BUILD_IN_SOURCE 1
  195. BUILD_COMMAND make lib_carl
  196. INSTALL_COMMAND make install
  197. LOG_BUILD ON
  198. LOG_INSTALL ON
  199. BUILD_BYPRODUCTS ${STORM_3RDPARTY_BINARY_DIR}/carl/lib/libcarl${DYNAMIC_EXT}
  200. )
  201. include(${STORM_3RDPARTY_BINARY_DIR}/carl/carlConfig.cmake)
  202. message("CARL_USE_CLN_NUMBERS: ${CARL_USE_CLN_NUMBERS}")
  203. set(STORM_HAVE_CLN ${CARL_USE_CLN_NUMBERS})
  204. add_dependencies(resources carl)
  205. set(carl_INCLUDE_DIR "${STORM_3RDPARTY_BINARY_DIR}/carl/include/")
  206. set(carl_LIBRARIES ${STORM_3RDPARTY_BINARY_DIR}/carl/lib/libcarl${DYNAMIC_EXT})
  207. set(STORM_HAVE_CARL ON)
  208. # install the carl dynamic library if we build it
  209. get_filename_component(STORM_CARL_DYLIB_FULL_PATH ${STORM_3RDPARTY_BINARY_DIR}/carl/lib/libcarl${DYNAMIC_EXT} REALPATH)
  210. install(FILES ${STORM_CARL_DYLIB_FULL_PATH} DESTINATION lib)
  211. endif()
  212. if(STORM_USE_CLN_NUMBERS AND NOT STORM_HAVE_CLN)
  213. message(FATAL_ERROR "Cannot use CLN numbers if carl is build without")
  214. endif()
  215. list(APPEND STORM_DEP_IMP_TARGETS lib_carl)
  216. endif()
  217. #############################################################
  218. ##
  219. ## SMT-RAT
  220. ##
  221. #############################################################
  222. set(STORM_HAVE_SMTRAT OFF)
  223. if(USE_SMTRAT)
  224. find_package(smtrat QUIET REQUIRED)
  225. if(smtrat_FOUND)
  226. set(STORM_HAVE_SMTRAT ON)
  227. message(STATUS "Storm - Linking with smtrat.")
  228. include_directories("${smtrat_INCLUDE_DIR}")
  229. list(APPEND STORM_LINK_LIBRARIES ${smtrat_LIBRARIES})
  230. else()
  231. message(FATAL_ERROR "StoRM - SMT-RAT was requested but not found")
  232. endif()
  233. endif()
  234. #############################################################
  235. ##
  236. ## HyPro
  237. ##
  238. #############################################################
  239. set(STORM_HAVE_HYPRO OFF)
  240. if(USE_HYPRO)
  241. find_package(hypro QUIET REQUIRED)
  242. if(hypro_FOUND)
  243. set(STORM_HAVE_HYPRO ON)
  244. message(STATUS "Storm - Linking with hypro.")
  245. include_directories("${hypro_INCLUDE_DIR}")
  246. list(APPEND STORM_LINK_LIBRARIES ${hypro_LIBRARIES})
  247. else()
  248. message(FATAL_ERROR "StoRM - HyPro was requested but not found")
  249. endif()
  250. endif()
  251. #############################################################
  252. ##
  253. ## gmp
  254. ##
  255. #############################################################
  256. # GMP is optional (unless MathSAT is used, see below)
  257. find_package(GMP QUIET)
  258. #############################################################
  259. ##
  260. ## MathSAT (optional)
  261. ##
  262. #############################################################
  263. if ("${MSAT_ROOT}" STREQUAL "")
  264. set(ENABLE_MSAT OFF)
  265. else()
  266. set(ENABLE_MSAT ON)
  267. endif()
  268. # MathSAT Defines
  269. set(STORM_HAVE_MSAT ${ENABLE_MSAT})
  270. if (ENABLE_MSAT)
  271. message (STATUS "Storm - Linking with MathSAT.")
  272. link_directories("${MSAT_ROOT}/lib")
  273. include_directories("${MSAT_ROOT}/include")
  274. list(APPEND STORM_LINK_LIBRARIES "mathsat")
  275. if(GMP_FOUND)
  276. include_directories("${GMP_INCLUDE_DIR}")
  277. list(APPEND STORM_LINK_LIBRARIES ${GMP_LIBRARY})
  278. elseif(MPIR_FOUND)
  279. include_directories("${GMP_INCLUDE_DIR}")
  280. list(APPEND STORM_LINK_LIBRARIES ${GMP_MPIR_LIBRARY})
  281. list(APPEND STORM_LINK_LIBRARIES ${GMP_MPIRXX_LIBRARY})
  282. else(GMP_FOUND)
  283. message(FATAL_ERROR "GMP is required for MathSAT, but was not found!")
  284. endif(GMP_FOUND)
  285. endif(ENABLE_MSAT)
  286. #############################################################
  287. ##
  288. ## Xerces
  289. ##
  290. #############################################################
  291. include(${STORM_3RDPARTY_SOURCE_DIR}/include_xerces.cmake)
  292. #############################################################
  293. ##
  294. ## Sylvan
  295. ##
  296. #############################################################
  297. ExternalProject_Add(
  298. sylvan
  299. DOWNLOAD_COMMAND ""
  300. PREFIX "sylvan"
  301. SOURCE_DIR ${STORM_3RDPARTY_SOURCE_DIR}/sylvan
  302. CMAKE_ARGS -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} -DSYLVAN_BUILD_TEST=Off -DSYLVAN_BUILD_EXAMPLES=Off -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DUSE_CARL=ON -Dcarl_INCLUDE_DIR=${carl_INCLUDE_DIR} -DSYLVAN_PORTABLE=${STORM_PORTABLE_RELEASE} -Dcarl_LIBRARIES=${carl_LIBRARIES}
  303. BINARY_DIR ${STORM_3RDPARTY_BINARY_DIR}/sylvan
  304. BUILD_IN_SOURCE 0
  305. INSTALL_COMMAND ""
  306. INSTALL_DIR ${STORM_3RDPARTY_BINARY_DIR}/sylvan
  307. LOG_CONFIGURE ON
  308. LOG_BUILD ON
  309. BUILD_BYPRODUCTS ${STORM_3RDPARTY_BINARY_DIR}/sylvan/src/libsylvan${STATIC_EXT}
  310. )
  311. ExternalProject_Get_Property(sylvan source_dir)
  312. ExternalProject_Get_Property(sylvan binary_dir)
  313. set(Sylvan_INCLUDE_DIR "${source_dir}/src")
  314. set(Sylvan_LIBRARY "${binary_dir}/src/libsylvan${STATIC_EXT}")
  315. message(STATUS "Storm - Using shipped version of sylvan.")
  316. message(STATUS "Storm - Linking with sylvan.")
  317. add_imported_library(sylvan STATIC ${Sylvan_LIBRARY} ${Sylvan_INCLUDE_DIR})
  318. add_dependencies(sylvan_STATIC sylvan)
  319. if(STORM_SHIPPED_CARL)
  320. add_dependencies(sylvan carl)
  321. endif()
  322. list(APPEND STORM_DEP_TARGETS sylvan_STATIC)
  323. find_package(Hwloc QUIET REQUIRED)
  324. if(HWLOC_FOUND)
  325. message(STATUS "Storm - Linking with hwloc ${HWLOC_VERSION}.")
  326. add_imported_library(hwloc STATIC ${HWLOC_LIBRARIES} "")
  327. list(APPEND STORM_DEP_TARGETS hwloc_STATIC)
  328. else()
  329. if(${OPERATING_SYSTEM} MATCHES "Linux")
  330. message(FATAL_ERROR "HWLOC is required on Linux but was not found.")
  331. endif()
  332. endif()
  333. #############################################################
  334. ##
  335. ## Google Test gtest
  336. ##
  337. #############################################################
  338. set(GOOGLETEST_LIB_DIR ${STORM_3RDPARTY_BINARY_DIR}/gtest-1.7.0)
  339. ExternalProject_Add(
  340. googletest
  341. #For downloads (may be useful later!)
  342. #SVN_REPOSITORY http://googletest.googlecode.com/svn/trunk/
  343. #TIMEOUT 10
  344. DOWNLOAD_COMMAND ""
  345. SOURCE_DIR "${STORM_3RDPARTY_SOURCE_DIR}/gtest-1.7.0"
  346. # Force the same output paths for debug and release builds so that
  347. # we know in which place the binaries end up when using the Xcode generator
  348. CMAKE_ARGS -Dgtest_force_shared_crt=ON -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG:PATH=${GOOGLETEST_LIB_DIR} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE:PATH=${GOOGLETEST_LIB_DIR}
  349. # Disable install step
  350. INSTALL_COMMAND ""
  351. BINARY_DIR ${GOOGLETEST_LIB_DIR}
  352. INSTALL_DIR ${GOOGLETEST_LIB_DIR}
  353. # Wrap download, configure and build steps in a script to log output
  354. LOG_CONFIGURE ON
  355. LOG_BUILD ON
  356. BUILD_BYPRODUCTS ${GOOGLETEST_LIB_DIR}/libgtest${STATIC_EXT} ${GOOGLETEST_LIB_DIR}/libgtest_main${STATIC_EXT}
  357. )
  358. # Specify include dir
  359. ExternalProject_Get_Property(googletest source_dir)
  360. set(GTEST_INCLUDE_DIR ${source_dir}/include)
  361. # Specify MainTest's link libraries
  362. ExternalProject_Get_Property(googletest binary_dir)
  363. set(GTEST_LIBRARIES ${binary_dir}/libgtest${STATIC_EXT} ${binary_dir}/libgtest_main${STATIC_EXT})
  364. add_dependencies(test-resources googletest)
  365. list(APPEND STORM_TEST_LINK_LIBRARIES ${GTEST_LIBRARIES})
  366. #############################################################
  367. ##
  368. ## Intel Threading Building Blocks (optional)
  369. ##
  370. #############################################################
  371. set(STORM_HAVE_INTELTBB OFF)
  372. if (STORM_USE_INTELTBB)
  373. find_package(TBB QUIET REQUIRED)
  374. if (TBB_FOUND)
  375. message(STATUS "Storm - Found Intel TBB with interface version ${TBB_INTERFACE_VERSION}.")
  376. message(STATUS "Storm - Linking with Intel TBB in ${TBB_LIBRARY_DIRS}.")
  377. set(STORM_HAVE_INTELTBB ON)
  378. link_directories(${TBB_LIBRARY_DIRS})
  379. include_directories(${TBB_INCLUDE_DIRS})
  380. list(APPEND STORM_LINK_LIBRARIES tbb tbbmalloc)
  381. else(TBB_FOUND)
  382. message(FATAL_ERROR "Storm - TBB was requested, but not found.")
  383. endif(TBB_FOUND)
  384. endif(STORM_USE_INTELTBB)
  385. #############################################################
  386. ##
  387. ## Threads
  388. ##
  389. #############################################################
  390. find_package(Threads QUIET REQUIRED)
  391. if (NOT Threads_FOUND)
  392. message(FATAL_ERROR "Storm - Threads was requested, but not found.")
  393. endif()
  394. include_directories(${THREADS_INCLUDE_DIRS})
  395. list(APPEND STORM_LINK_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
  396. if (STORM_USE_COTIRE)
  397. target_link_libraries(storm_unity ${CMAKE_THREAD_LIBS_INIT})
  398. endif(STORM_USE_COTIRE)
  399. #############################################################
  400. ##
  401. ## CUDA Library generation
  402. ##
  403. #############################################################
  404. if ("${CUDA_ROOT}" STREQUAL "")
  405. set(ENABLE_CUDA OFF)
  406. else()
  407. set(ENABLE_CUDA ON)
  408. endif()
  409. # CUDA Defines
  410. if (ENABLE_CUDA)
  411. set(STORM_CPP_CUDA_DEF "define")
  412. else()
  413. set(STORM_CPP_CUDA_DEF "undef")
  414. endif()
  415. # CUDA Defines
  416. set(STORM_CPP_CUDAFORSTORM_DEF "undef")
  417. if(ENABLE_CUDA)
  418. # Test for type alignment
  419. try_run(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT
  420. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeAlignmentCheck.cpp"
  421. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  422. )
  423. if(NOT STORM_CUDA_COMPILE_RESULT_TYPEALIGNMENT)
  424. message(FATAL_ERROR "Storm (CudaPlugin) - Could not test type alignment, there was an Error while compiling the file ${PROJECT_SOURCE_DIR}/cuda/CMakeAlignmentCheck.cpp: ${OUTPUT_TEST_VAR}")
  425. elseif(STORM_CUDA_RUN_RESULT_TYPEALIGNMENT EQUAL 0)
  426. message(STATUS "StoRM (CudaPlugin) - Result of Type Alignment Check: OK.")
  427. else()
  428. message(FATAL_ERROR "Storm (CudaPlugin) - Result of Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_TYPEALIGNMENT})")
  429. endif()
  430. # Test for Float 64bit Alignment
  431. try_run(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT
  432. ${PROJECT_BINARY_DIR} "${PROJECT_SOURCE_DIR}/cuda/CMakeFloatAlignmentCheck.cpp"
  433. COMPILE_OUTPUT_VARIABLE OUTPUT_TEST_VAR
  434. )
  435. if(NOT STORM_CUDA_COMPILE_RESULT_FLOATALIGNMENT)
  436. message(FATAL_ERROR "Storm (CudaPlugin) - Could not test float type alignment, there was an Error while compiling the file ${PROJECT_SOURCE_DIR}/cuda/CMakeFloatAlignmentCheck.cpp: ${OUTPUT_TEST_VAR}")
  437. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 2)
  438. message(STATUS "Storm (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment active.")
  439. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "define")
  440. elseif(STORM_CUDA_RUN_RESULT_FLOATALIGNMENT EQUAL 3)
  441. message(STATUS "Storm (CudaPlugin) - Result of Float Type Alignment Check: 64bit alignment disabled.")
  442. set(STORM_CUDAPLUGIN_FLOAT_64BIT_ALIGN_DEF "undef")
  443. else()
  444. message(FATAL_ERROR "Storm (CudaPlugin) - Result of Float Type Alignment Check: FAILED (Code ${STORM_CUDA_RUN_RESULT_FLOATALIGNMENT})")
  445. endif()
  446. #
  447. # Make a version file containing the current version from git.
  448. #
  449. include(GetGitRevisionDescription)
  450. git_describe_checkout(STORM_GIT_VERSION_STRING)
  451. # Parse the git Tag into variables
  452. string(REGEX REPLACE "^([0-9]+)\\..*" "\\1" STORM_CUDAPLUGIN_VERSION_MAJOR "${STORM_GIT_VERSION_STRING}")
  453. string(REGEX REPLACE "^[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_MINOR "${STORM_GIT_VERSION_STRING}")
  454. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_PATCH "${STORM_GIT_VERSION_STRING}")
  455. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-([0-9]+)\\-.*" "\\1" STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD "${STORM_GIT_VERSION_STRING}")
  456. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-([a-z0-9]+).*" "\\1" STORM_CUDAPLUGIN_VERSION_HASH "${STORM_GIT_VERSION_STRING}")
  457. string(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.[0-9]+\\-[0-9]+\\-[a-z0-9]+\\-(.*)" "\\1" STORM_CUDAPLUGIN_VERSION_APPENDIX "${STORM_GIT_VERSION_STRING}")
  458. if ("${STORM_CUDAPLUGIN_VERSION_APPENDIX}" MATCHES "^.*dirty.*$")
  459. set(STORM_CUDAPLUGIN_VERSION_DIRTY 1)
  460. else()
  461. set(STORM_CUDAPLUGIN_VERSION_DIRTY 0)
  462. endif()
  463. message(STATUS "Storm (CudaPlugin) - Version information: ${STORM_CUDAPLUGIN_VERSION_MAJOR}.${STORM_CUDAPLUGIN_VERSION_MINOR}.${STORM_CUDAPLUGIN_VERSION_PATCH} (${STORM_CUDAPLUGIN_VERSION_COMMITS_AHEAD} commits ahead of Tag) build from ${STORM_CUDAPLUGIN_VERSION_HASH} (Dirty: ${STORM_CUDAPLUGIN_VERSION_DIRTY})")
  464. # Configure a header file to pass some of the CMake settings to the source code
  465. configure_file (
  466. "${PROJECT_SOURCE_DIR}/cuda/storm-cudaplugin-config.h.in"
  467. "${PROJECT_BINARY_DIR}/include/storm-cudaplugin-config.h"
  468. )
  469. #create library
  470. find_package(CUDA REQUIRED)
  471. set(CUSP_INCLUDE_DIRS "${PROJECT_SOURCE_DIR}/resources/3rdparty/cusplibrary")
  472. find_package(Cusp REQUIRED)
  473. find_package(Thrust REQUIRED)
  474. set(STORM_CUDA_LIB_NAME "storm-cuda")
  475. file(GLOB_RECURSE STORM_CUDA_KERNEL_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.cu)
  476. file(GLOB_RECURSE STORM_CUDA_HEADER_FILES ${PROJECT_SOURCE_DIR}/cuda/kernels/*.h)
  477. source_group(kernels FILES ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES})
  478. include_directories(${PROJECT_SOURCE_DIR}/cuda/kernels/)
  479. #set(CUDA_PROPAGATE_HOST_FLAGS OFF)
  480. set(CUDA_NVCC_FLAGS "-arch=sm_30")
  481. #############################################################
  482. ##
  483. ## CUSP
  484. ##
  485. #############################################################
  486. if(CUSP_FOUND)
  487. include_directories(${CUSP_INCLUDE_DIR})
  488. cuda_include_directories(${CUSP_INCLUDE_DIR})
  489. message(STATUS "Storm (CudaPlugin) - Found CUSP Version ${CUSP_VERSION} in location ${CUSP_INCLUDE_DIR}.")
  490. else()
  491. message(FATAL_ERROR "Storm (CudaPlugin) - Could not find CUSP.")
  492. endif()
  493. #############################################################
  494. ##
  495. ## Thrust
  496. ##
  497. #############################################################
  498. if(THRUST_FOUND)
  499. include_directories(${THRUST_INCLUDE_DIR})
  500. cuda_include_directories(${THRUST_INCLUDE_DIR})
  501. message(STATUS "Storm (CudaPlugin) - Found Thrust Version ${THRUST_VERSION} in location ${THRUST_INCLUDE_DIR}.")
  502. else()
  503. message(FATAL_ERROR "Storm (CudaPlugin) - Could not find Thrust. Check your CUDA installation.")
  504. endif()
  505. include_directories(${CUDA_INCLUDE_DIRS})
  506. include_directories(${ADDITIONAL_INCLUDE_DIRS})
  507. cuda_add_library(${STORM_CUDA_LIB_NAME}
  508. ${STORM_CUDA_KERNEL_FILES} ${STORM_CUDA_HEADER_FILES}
  509. )
  510. message (STATUS "Storm - Linking with CUDA.")
  511. list(APPEND STORM_LINK_LIBRARIES ${STORM_CUDA_LIB_NAME})
  512. include_directories("${PROJECT_SOURCE_DIR}/cuda/kernels/")
  513. endif()
  514. add_custom_target(copy_resources_headers DEPENDS ${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp/sparsepp.h ${CMAKE_BINARY_DIR}/include/resources/3rdparty/sparsepp/sparsepp.h)