The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
439 B

4 weeks ago
  1. #ifndef STORM_CUDAFORSTORM_VERSION_H_
  2. #define STORM_CUDAFORSTORM_VERSION_H_
  3. // Library exports
  4. #include "cudaForStorm.h"
  5. #include <string>
  6. size_t getStormCudaPluginVersionMajor();
  7. size_t getStormCudaPluginVersionMinor();
  8. size_t getStormCudaPluginVersionPatch();
  9. size_t getStormCudaPluginVersionCommitsAhead();
  10. const char* getStormCudaPluginVersionHash();
  11. bool getStormCudaPluginVersionIsDirty();
  12. #endif // STORM_CUDAFORSTORM_VERSION_H_