#include "cli.h" #include "entrypoints.h" #include "../utility/storm.h" #include "src/settings/modules/DebugSettings.h" #include "src/exceptions/OptionParserException.h" #include "src/utility/storm-version.h" // Includes for the linked libraries and versions header. #ifdef STORM_HAVE_INTELTBB # include "tbb/tbb_stddef.h" #endif #ifdef STORM_HAVE_GLPK # include "glpk.h" #endif #ifdef STORM_HAVE_GUROBI # include "gurobi_c.h" #endif #ifdef STORM_HAVE_Z3 # include "z3.h" #endif #ifdef STORM_HAVE_MSAT # include "mathsat.h" #endif #ifdef STORM_HAVE_CUDA #include #include #endif #ifdef STORM_HAVE_SMTRAT #include "lib/smtrat.h" #endif namespace storm { namespace cli { std::string getCurrentWorkingDirectory() { char temp[512]; return (GetCurrentDir(temp, 512 - 1) ? std::string(temp) : std::string("")); } void printHeader(const std::string name, const int argc, const char* argv[]) { std::cout << name << std::endl; std::cout << "---------------" << std::endl << std::endl; std::cout << storm::utility::StormVersion::longVersionString() << std::endl; #ifdef STORM_HAVE_INTELTBB std::cout << "Linked with Intel Threading Building Blocks v" << TBB_VERSION_MAJOR << "." << TBB_VERSION_MINOR << " (Interface version " << TBB_INTERFACE_VERSION << ")." << std::endl; #endif #ifdef STORM_HAVE_GLPK std::cout << "Linked with GNU Linear Programming Kit v" << GLP_MAJOR_VERSION << "." << GLP_MINOR_VERSION << "." << std::endl; #endif #ifdef STORM_HAVE_GUROBI std::cout << "Linked with Gurobi Optimizer v" << GRB_VERSION_MAJOR << "." << GRB_VERSION_MINOR << "." << GRB_VERSION_TECHNICAL << "." << std::endl; #endif #ifdef STORM_HAVE_Z3 unsigned int z3Major, z3Minor, z3BuildNumber, z3RevisionNumber; Z3_get_version(&z3Major, &z3Minor, &z3BuildNumber, &z3RevisionNumber); std::cout << "Linked with Microsoft Z3 Optimizer v" << z3Major << "." << z3Minor << " Build " << z3BuildNumber << " Rev " << z3RevisionNumber << "." << std::endl; #endif #ifdef STORM_HAVE_MSAT char* msatVersion = msat_get_version(); std::cout << "Linked with " << msatVersion << "." << std::endl; msat_free(msatVersion); #endif #ifdef STORM_HAVE_SMTRAT std::cout << "Linked with SMT-RAT " << SMTRAT_VERSION << "." << std::endl; #endif #ifdef STORM_HAVE_CARL std::cout << "Linked with CARL." << std::endl; // TODO get version string #endif #ifdef STORM_HAVE_CUDA int deviceCount = 0; cudaError_t error_id = cudaGetDeviceCount(&deviceCount); if (error_id == cudaSuccess) { std::cout << "Compiled with CUDA support, "; // This function call returns 0 if there are no CUDA capable devices. if (deviceCount == 0) { std::cout<< "but there are no available device(s) that support CUDA." << std::endl; } else { std::cout << "detected " << deviceCount << " CUDA Capable device(s):" << std::endl; } int dev, driverVersion = 0, runtimeVersion = 0; for (dev = 0; dev < deviceCount; ++dev) { cudaSetDevice(dev); cudaDeviceProp deviceProp; cudaGetDeviceProperties(&deviceProp, dev); std::cout << "CUDA Device " << dev << ": \"" << deviceProp.name << "\"" << std::endl; // Console log cudaDriverGetVersion(&driverVersion); cudaRuntimeGetVersion(&runtimeVersion); std::cout << " CUDA Driver Version / Runtime Version " << driverVersion / 1000 << "." << (driverVersion % 100) / 10 << " / " << runtimeVersion / 1000 << "." << (runtimeVersion % 100) / 10 << std::endl; std::cout << " CUDA Capability Major/Minor version number: " << deviceProp.major<<"."<(uLargeInteger.QuadPart) / 10000.0; // 100 ns Resolution to milliseconds uLargeInteger.LowPart = ftUser.dwLowDateTime; uLargeInteger.HighPart = ftUser.dwHighDateTime; double userTime = static_cast(uLargeInteger.QuadPart) / 10000.0; std::cout << "CPU Time: " << std::endl; std::cout << "\tKernel Time: " << std::setprecision(5) << kernelTime << "ms" << std::endl; std::cout << "\tUser Time: " << std::setprecision(5) << userTime << "ms" << std::endl; #endif } bool parseOptions(const int argc, const char* argv[]) { try { storm::settings::mutableManager().setFromCommandLine(argc, argv); } catch (storm::exceptions::OptionParserException& e) { storm::settings::manager().printHelp(); throw e; return false; } if (storm::settings::getModule().isHelpSet()) { storm::settings::manager().printHelp(storm::settings::getModule().getHelpModuleName()); return false; } if (storm::settings::getModule().isVersionSet()) { storm::settings::manager().printVersion(); return false; } if (storm::settings::getModule().isVerboseSet()) { STORM_GLOBAL_LOGLEVEL_INFO(); } if (storm::settings::getModule().isDebugSet()) { STORM_GLOBAL_LOGLEVEL_DEBUG(); } if (storm::settings::getModule().isTraceSet()) { STORM_GLOBAL_LOGLEVEL_TRACE(); } if (storm::settings::getModule().isLogfileSet()) { storm::utility::initializeFileLogging(); } return true; } void processOptions() { if (storm::settings::getModule().isLogfileSet()) { storm::utility::initializeFileLogging(); } storm::settings::modules::GeneralSettings const& settings = storm::settings::getModule(); // If we have to build the model from a symbolic representation, we need to parse the representation first. boost::optional program; if (settings.isSymbolicSet()) { std::string const& programFile = settings.getSymbolicModelFilename(); program = storm::parseProgram(programFile); } // Then proceed to parsing the property (if given), since the model we are building may depend on the property. std::vector> parsedFormulas; if (settings.isPropertySet()) { std::string properties = settings.getProperty(); if(program) { parsedFormulas = storm::parseFormulasForProgram(properties, program.get()); } else { parsedFormulas = storm::parseFormulasForExplicit(properties); } } std::vector> formulas(parsedFormulas.begin(), parsedFormulas.end()); if (settings.isSymbolicSet()) { #ifdef STORM_HAVE_CARL if (settings.isParametricSet()) { buildAndCheckSymbolicModel(program.get(), formulas, true); } else { #endif buildAndCheckSymbolicModel(program.get(), formulas, true); #ifdef STORM_HAVE_CARL } #endif } else if (settings.isExplicitSet()) { buildAndCheckExplicitModel(formulas, true); } else { STORM_LOG_THROW(false, storm::exceptions::InvalidSettingsException, "No input model."); } } } }