10 #ifdef HAVE_GPERFTOOLS 11 #include "gperftools/profiler.h" 12 #include "gperftools/heap-profiler.h" 16 #include "MooseRevision.h" 64 #include "libmesh/exodusII_io.h" 65 #include "libmesh/mesh_refinement.h" 66 #include "libmesh/string_to_enum.h" 67 #include "libmesh/checkpoint_io.h" 68 #include "libmesh/mesh_base.h" 69 #include "libmesh/petsc_solver_exception.h" 72 #ifdef LIBMESH_HAVE_DLOPEN 74 #include <sys/utsname.h> 77 #if __has_include(<torch/xpu.h>) 78 #include <torch/xpu.h> 79 #define MOOSE_HAVE_XPU 1 87 #include <sys/types.h> 109 std::filesystem::path
110 temporaryBackupMeshPath(
const MooseApp & app,
const std::string & purpose,
const bool shared)
112 static std::atomic<unsigned long> counter = 0;
117 const auto file_base = std::filesystem::path(app.
getOutputFileBase()).filename().string();
118 const auto dirname_base = (file_base.empty() ?
"moose" : file_base) +
"_" + purpose +
"_mesh";
119 const auto tmp_dir = std::filesystem::temp_directory_path();
124 dirname = dirname_base +
"_" + std::to_string(counter++);
129 }
while (!std::filesystem::create_directory(tmp_dir / dirname,
err) && !
err);
132 mooseError(
"Unable to create temporary mesh ",
135 std::filesystem::absolute(tmp_dir / dirname),
143 const auto root = std::filesystem::temp_directory_path() / dirname;
145 return root /
"mesh.cpr";
149 readBackupMeshFile(
const std::filesystem::path & path)
151 std::ifstream file(path, std::ios::in | std::ios::binary);
153 mooseError(
"Unable to open temporary mesh backup file ",
154 std::filesystem::absolute(path),
157 return std::string(std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
161 writeBackupMeshFile(
const std::filesystem::path & path,
const std::string & contents)
164 if (!std::filesystem::create_directories(path.parent_path(),
err) &&
err)
165 mooseError(
"Unable to create temporary mesh backup directory ",
166 std::filesystem::absolute(path.parent_path()),
170 std::ofstream file(path, std::ios::out | std::ios::binary);
172 mooseError(
"Unable to open temporary mesh backup file ",
173 std::filesystem::absolute(path),
176 file.write(contents.data(), contents.size());
190 const auto mesh_path = temporaryBackupMeshPath(app,
"backup",
true);
193 io.
write(mesh_path.string());
200 for (
const auto & entry : std::filesystem::recursive_directory_iterator(mesh_path))
201 if (entry.is_regular_file())
203 const auto relative_path =
204 std::filesystem::relative(entry.path(), mesh_path).generic_string();
205 backup.
mesh_files.emplace_back(relative_path, readBackupMeshFile(entry.path()));
214 std::filesystem::remove_all(mesh_path.parent_path(),
err);
224 const auto mesh_path = temporaryBackupMeshPath(app,
"restore",
true);
226 for (
const auto & [relative_path, contents] : backup.
mesh_files)
227 writeBackupMeshFile(mesh_path / relative_path, contents);
232 auto & mesh_base =
mesh.getMesh();
237 io.read(mesh_path.string());
243 for (
auto & node : mesh_base.node_ptr_range())
245 for (
auto & elem : mesh_base.element_ptr_range())
256 std::filesystem::remove_all(mesh_path.parent_path(),
err);
267 "app_to_run",
"--app <type>",
"Specify the application type to run (case-sensitive)");
274 "input_file",
"-i <input file(s)>",
"Specify input file(s); multiple files are merged");
285 params.
addCommandLineParam<
bool>(
"display_version",
"-v --version",
"Print application version");
289 "--mesh-only <optional path>",
291 "Build and output the mesh only (Default: \"<input_file_name>_in.e\")");
294 "--csg-only <optional path>",
296 "Setup and output the input mesh in CSG format only (Default: " 297 "\"<input_file_name>_out_csg.json\")");
299 "show_input",
"--show-input",
"Shows the parsed input file before running the simulation");
302 "show_outputs",
"--show-outputs",
"Shows the output execution time information");
305 "show_controls",
"--show-controls",
"Shows the Control logic available and executed");
309 "no_color",
"--no-color",
"Disable coloring of all Console outputs");
314 "color",
"--color <auto,on,off=on>", colors,
"Whether to use color in console output");
321 "Ignore input file and build a minimal application with Transient executioner");
326 "Starts a process to communicate with development tools using the language server protocol");
328 params.
addCommandLineParam<
bool>(
"dump",
"--dump",
"Shows a dump of available input file syntax");
331 "--dump-search <search>",
332 "Shows a dump of available input syntax matching a search");
333 params.
addCommandLineParam<
bool>(
"registry",
"--registry",
"Lists all known objects and actions");
335 "registry_hit",
"--registry-hit",
"Lists all known objects and actions in hit format");
337 "use_executor",
"--executor",
"Use the new Executor system instead of Executioners");
340 "show_type",
"--show-type",
"Return the name of the application object");
341 params.
addCommandLineParam<
bool>(
"yaml",
"--yaml",
"Dumps all input file syntax in YAML format");
343 "yaml_search",
"--yaml-search",
"Dumps input file syntax matching a search in YAML format");
344 params.
addCommandLineParam<
bool>(
"json",
"--json",
"Dumps all input file syntax in JSON format");
346 "json_search",
"--json-search",
"Dumps input file syntax matching a search in JSON format");
348 "syntax",
"--syntax",
"Dumps the associated Action syntax paths ONLY");
350 "show_docs",
"--docs",
"Print url/path to the documentation website");
352 "show_capabilities",
"--show-capabilities",
"Dumps the capability registry in JSON format.");
354 "required_capabilities",
355 "--required-capabilities",
356 "A list of conditions that is checked against the registered capabilities (see " 357 "--show-capabilities). The executable will terminate early if the conditions are not met.");
359 "testharness_capabilities",
360 "--testharness-capabilities",
361 "Path to JSON from the TestHarness that contains capabilities to be appended.");
364 "check_capabilities",
365 "--check-capabilities",
366 "A list of conditions that is checked against the registered capabilities. Will exit based " 367 "on whether or not the capaiblities are fulfilled. Does not check dynamically loaded apps.");
370 "Check the input file (i.e. requires -i <filename>) and quit");
374 "--show-copyable-inputs",
375 "Shows the directories able to be copied into a user-writable location");
379 "--copy-inputs <dir>",
380 "Copies installed inputs (e.g. tests, examples, etc.) to a directory <appname>_<dir>");
385 "--run <test harness args>",
387 "Runs the inputs in the current directory copied to a " 388 "user-writable location by \"--copy-inputs\"");
391 "list_constructed_objects",
392 "--list-constructed-objects",
393 "List all moose object type names constructed by the master app factory");
397 "--citations [file]",
399 "List the papers (in BibTeX format) that should be cited for the framework, PETSc, and the " 400 "modules and objects used in this simulation; optionally write them to [file] instead of the " 404 "n_threads",
"--n-threads=<n>",
"Runs the specified number of threads per process");
411 "Warn about unused input file options instead of erroring");
414 "error_unused",
"-e --error-unused",
"Error when encountering unused input file options");
418 "-o --error-override",
419 "Error when encountering overridden or parameters supplied multiple times");
422 "error_deprecated",
"--error-deprecated",
"Turn deprecated code messages into Errors");
426 "--distributed-mesh",
427 "Forces the use of a distributed finite element mesh");
434 "--split-mesh <splits>",
435 "Comma-separated list of numbers of chunks to split the mesh into");
439 "split_file",
"--split-file <filename>",
"Name of split mesh file(s) to write/read");
441 params.
addCommandLineParam<
bool>(
"use_split",
"--use-split",
"Use split distributed mesh files");
444 "refinements",
"-r <num refinements>",
"Specify additional initial uniform mesh refinements");
448 "--recover <optional file base>",
450 "Continue the calculation. Without <file base>, the most recent recovery file will be used");
455 "Forcefully load checkpoints despite possible incompatibilities");
461 "Disables the output of the application header.");
465 "test_checkpoint_half_transient",
466 "--test-checkpoint-half-transient",
467 "Run half of a transient with checkpoints enabled; used by the TestHarness");
472 "Test re-running the middle timestep; used by the TestHarness");
477 "Enable floating point exception handling in critical sections of code" 479 " (automatic due to debug build)" 487 "Disable floating point exception handling in critical sections of code" 489 " (unused due to non-debug build)" 496 "no_gdb_backtrace",
"--no-gdb-backtrace",
"Disables gdb backtraces.");
504 "Enable all performance logging for timing; disables screen " 505 "output of performance logs for all Console objects");
508 "no_timing",
"--no-timing",
"Disabled performance logging; overrides -t or --timing");
512 "allow_test_objects",
"--allow-test-objects",
"Register test objects and syntax");
520 "Keep standard output from all processors when running in parallel");
525 "Keep standard output from all processors when running in parallel");
530 "--timpi-sync <type=nbx>",
532 "Changes the sync type used in spare parallel communitations within TIMPI");
537 "--start-in-debugger <debugger>",
538 "Start the application and attach a debugger; this will " 539 "launch xterm windows using <debugger>");
543 "--stop-for-debugger <seconds>",
544 "Pauses the application during startup for <seconds> to allow for connection of debuggers");
547 "perf_graph_live_all",
"--perf-graph-live-all",
"Forces printing of ALL progress messages");
551 "disable_perf_graph_live",
"--disable-perf-graph-live",
"Disables PerfGraph live printing");
555 "automatic_automatic_scaling",
false,
"Whether to turn on automatic scaling by default");
557 const MooseEnum compute_device_type(
"cpu cuda mps hip ceed-cpu ceed-cuda ceed-hip xpu",
"cpu");
562 "The device type we want to run accelerated (libtorch, MFEM) computations on.");
564 #ifdef HAVE_GPERFTOOLS 567 "--gperf-profiler-on <ranks>",
568 "To generate profiling report only on comma-separated list of MPI ranks");
573 "--show-data-params",
575 "Show found paths for all DataFileName parameters in the header");
579 "Show registered data paths for searching in the header");
582 params.
addPrivateParam<std::shared_ptr<Parallel::Communicator>>(
"_comm");
588 params.
addPrivateParam<std::unique_ptr<Backup> *>(
"_initial_backup",
nullptr);
590 #ifdef MOOSE_MFEM_ENABLED 596 "use_legacy_material_output",
598 "Set false to allow material properties to be output on INITIAL, not just TIMESTEP_END.");
600 "use_legacy_initial_residual_evaluation_behavior",
602 "The legacy behavior performs an often times redundant residual evaluation before the " 603 "solution modifying objects are executed prior to the initial (0th nonlinear iteration) " 604 "residual evaluation. The new behavior skips that redundant residual evaluation unless the " 605 "parameter Executioner/use_pre_SMO_residual is set to true.");
610 "Set true to enable data-driven mesh generation, which is an experimental feature");
614 "--parse-neml2-only",
615 "Executes the [NEML2] block to parse the input file and terminate.");
635 _comm(getParam<
std::shared_ptr<
Parallel::Communicator>>(
"_comm")),
636 _file_base_set_by_user(false),
637 _output_position_set(false),
638 _start_time_set(false),
640 _global_time_offset(0.0),
642 _action_factory(*this),
643 _action_warehouse(*this, _syntax, _action_factory),
644 _output_warehouse(*this),
645 _parser(getCheckedPointerParam<
std::shared_ptr<
Parser>>(
"_parser")),
646 _command_line(getCheckedPointerParam<
std::shared_ptr<
CommandLine>>(
"_command_line")),
647 _builder(*this, _action_warehouse, *_parser),
649 _perf_graph(createRecoverablePerfGraph()),
650 _solution_invalidity(createRecoverableSolutionInvalidity()),
651 _rank_map(*_comm, _perf_graph),
652 _use_executor(getParam<bool>(
"use_executor")),
653 _null_executor(NULL),
654 _use_nonlinear(true),
655 _use_eigen_value(false),
656 _enable_unused_check(ERROR_UNUSED),
658 _error_overridden(false),
659 _early_exit_param(
""),
660 _ready_to_exit(false),
662 _initial_from_file(false),
663 _distributed_mesh_on_command_line(getParam<bool>(
"distributed_mesh")),
667 _use_split(getParam<bool>(
"use_split")),
668 _force_restart(getParam<bool>(
"force_restart")),
674 _test_checkpoint_half_transient(parameters.
get<bool>(
"test_checkpoint_half_transient")),
675 _test_restep(parameters.
get<bool>(
"test_restep")),
676 _check_input(getParam<bool>(
"check_input")),
677 _multiapp_level(isParamValid(
"_multiapp_level") ? getParam<unsigned
int>(
"_multiapp_level")
679 _multiapp_number(isParamValid(
"_multiapp_number") ? getParam<unsigned
int>(
"_multiapp_number")
681 _use_master_mesh(getParam<bool>(
"_use_master_mesh")),
682 _master_mesh(isParamValid(
"_master_mesh") ? getParam<const
MooseMesh *>(
"_master_mesh")
684 _master_displaced_mesh(isParamValid(
"_master_displaced_mesh")
685 ? getParam<const
MooseMesh *>(
"_master_displaced_mesh")
687 _mesh_generator_system(*this),
688 _chain_control_system(*this),
689 _rd_reader(*this, _restartable_data, forceRestart()),
690 _execute_flags(
moose::internal::ExecFlagRegistry::getExecFlagRegistry().getFlags()),
691 _output_buffer_cache(nullptr),
692 _automatic_automatic_scaling(getParam<bool>(
"automatic_automatic_scaling")),
693 _initial_backup(getParam<
std::unique_ptr<
Backup> *>(
"_initial_backup"))
694 #ifdef MOOSE_LIBTORCH_ENABLED
696 _libtorch_device(determineLibtorchDeviceType(getParam<
MooseEnum>(
"compute_device")))
698 #ifdef MOOSE_MFEM_ENABLED
700 _mfem_device(isParamValid(
"_mfem_device")
701 ? getParam<
std::shared_ptr<
mfem::Device>>(
"_mfem_device")
703 _mfem_devices(isParamValid(
"_mfem_devices") ? getParam<
std::set<
std::string>>(
"_mfem_devices")
704 :
std::set<
std::string>{})
707 if (¶meters != &_pars)
709 const std::string bad_params =
"(InputParameters parameters)";
710 const std::string good_params =
"(const InputParameters & parameters)";
711 const std::string source_constructor = type() +
"::" + type();
714 " copy-constructs its input parameters.\n\n",
715 "This is deprecated and will not be allowed in the future.\n\n",
736 mooseAssert(_command_line->hasParsed(),
"Command line has not parsed");
737 mooseAssert(_parser->queryRoot(),
"Parser has not parsed");
740 const auto & timpi_sync = getParam<std::string>(
"timpi_sync");
743 #ifdef HAVE_GPERFTOOLS 744 if (isUltimateMaster())
746 bool has_cpu_profiling =
false;
747 bool has_heap_profiling =
false;
748 static std::string cpu_profile_file;
749 static std::string heap_profile_file;
752 if (std::getenv(
"MOOSE_PROFILE_BASE"))
754 has_cpu_profiling =
true;
756 std::getenv(
"MOOSE_PROFILE_BASE") + std::to_string(_comm->rank()) +
".prof";
758 auto name = MooseUtils::splitFileName(cpu_profile_file);
759 if (!
name.first.empty())
761 if (processor_id() == 0)
768 if (std::getenv(
"MOOSE_HEAP_BASE"))
770 has_heap_profiling =
true;
771 heap_profile_file = std::getenv(
"MOOSE_HEAP_BASE") + std::to_string(_comm->rank());
773 auto name = MooseUtils::splitFileName(heap_profile_file);
774 if (!
name.first.empty())
776 if (processor_id() == 0)
783 if (isParamSetByUser(
"gperf_profiler_on"))
785 auto rankstr = getParam<std::string>(
"gperf_profiler_on");
786 std::vector<processor_id_type> ranks;
789 mooseError(
"Invalid argument for --gperf-profiler-on: '", rankstr,
"'");
790 for (
auto & rank : ranks)
792 if (rank >= _comm->size())
793 mooseError(
"Invalid argument for --gperf-profiler-on: ",
795 " is greater than or equal to ",
797 if (rank == _comm->rank())
799 _cpu_profiling = has_cpu_profiling;
800 _heap_profiling = has_heap_profiling;
806 _cpu_profiling = has_cpu_profiling;
807 _heap_profiling = has_heap_profiling;
811 if (!ProfilerStart(cpu_profile_file.c_str()))
812 mooseError(
"CPU profiler is not started properly");
816 HeapProfilerStart(heap_profile_file.c_str());
817 if (!IsHeapProfilerRunning())
818 mooseError(
"Heap profiler is not started properly");
822 if (std::getenv(
"MOOSE_PROFILE_BASE") || std::getenv(
"MOOSE_HEAP_BASE"))
823 mooseError(
"gperftool is not available for CPU or heap profiling");
827 if (isParamValid(
"language_server") && getParam<bool>(
"language_server"))
828 _output_buffer_cache = Moose::out.rdbuf(
nullptr);
833 _the_warehouse = std::make_unique<TheWarehouse>();
836 _the_warehouse->registerAttribute<
AttribExecOns>(
"exec_ons", 0);
839 _the_warehouse->registerAttribute<
AttribThread>(
"thread", 0);
841 _the_warehouse->registerAttribute<
AttribPreIC>(
"pre_ic", 0);
842 _the_warehouse->registerAttribute<
AttribPreAux>(
"pre_aux");
843 _the_warehouse->registerAttribute<
AttribPostAux>(
"post_aux");
844 _the_warehouse->registerAttribute<
AttribName>(
"name",
"dummy");
845 _the_warehouse->registerAttribute<
AttribSystem>(
"system",
"dummy");
846 _the_warehouse->registerAttribute<
AttribKokkos>(
"kokkos",
false);
847 _the_warehouse->registerAttribute<
AttribVar>(
"variable", -1);
851 _the_warehouse->registerAttribute<
AttribSorted>(
"sorted");
854 _perf_graph.enableLivePrint();
856 if (_check_input && isParamSetByUser(
"recover"))
857 mooseError(
"Cannot run --check-input with --recover. Recover files might not exist");
859 if (isParamSetByUser(
"start_in_debugger") && isUltimateMaster())
861 auto command = getParam<std::string>(
"start_in_debugger");
863 Moose::out <<
"Starting in debugger using: " << command << std::endl;
867 std::stringstream command_stream;
870 command_stream <<
"xterm -e \"echo 'Rank: " << processor_id() <<
" Hostname: " <<
hostname 871 <<
" PID: " << getpid() <<
"'; echo ''; ";
874 if (command.find(
"lldb") != std::string::npos || command.find(
"gdb") != std::string::npos)
875 command_stream << command <<
" -p " << getpid();
879 "\nIf this is truly what you meant then contact moose-users to have a discussion " 880 "about adding your debugger.");
883 command_stream <<
"\"" <<
" & ";
884 std::string command_string = command_stream.str();
885 Moose::out <<
"Running: " << command_string << std::endl;
887 int ret = std::system(command_string.c_str());
891 std::this_thread::sleep_for(std::chrono::seconds(10));
894 if (isParamSetByUser(
"stop_for_debugger") && isUltimateMaster())
896 Moose::out <<
"\nStopping for " << getParam<unsigned int>(
"stop_for_debugger")
897 <<
" seconds to allow attachment from a debugger.\n";
899 Moose::out <<
"\nAll of the processes you can connect to:\n";
900 Moose::out <<
"rank - hostname - pid\n";
907 Moose::err << processor_id() <<
" - " <<
hostname <<
" - " << getpid() <<
"\n";
910 Moose::out <<
"\nWaiting...\n" << std::endl;
913 std::this_thread::sleep_for(std::chrono::seconds(getParam<unsigned int>(
"stop_for_debugger")));
916 if (_master_mesh && isUltimateMaster())
917 mooseError(
"Mesh can be passed in only for sub-apps");
919 if (_master_displaced_mesh && !_master_mesh)
920 mooseError(
"_master_mesh should have been set when _master_displaced_mesh is set");
922 #ifdef MOOSE_MFEM_ENABLED 925 mooseAssert(!isUltimateMaster(),
926 "The MFEM device should only be auto-set for sub-applications");
927 mooseAssert(!_mfem_devices.empty(),
928 "If we are a sub-application and we have an MFEM device object, then we must know " 929 "its configuration string");
939 if (_pars.have_parameter<
bool>(
"use_legacy_dirichlet_bc"))
940 mooseDeprecated(
"The parameter 'use_legacy_dirichlet_bc' is no longer valid.\n\n",
941 "All Dirichlet boundary conditions are preset by default.\n\n",
942 "Remove said parameter in ",
944 " to remove this deprecation warning.");
946 if (_test_restep && _test_checkpoint_half_transient)
947 mooseError(
"Cannot use --test-restep and --test-checkpoint-half-transient together");
949 Moose::out << std::flush;
951 #ifdef MOOSE_KOKKOS_ENABLED 952 #ifdef MOOSE_ENABLE_KOKKOS_GPU 958 std::optional<MooseEnum>
962 return getParam<MooseEnum>(
"compute_device");
968 #ifdef HAVE_GPERFTOOLS 995 #ifdef LIBMESH_HAVE_DLOPEN 998 dlclose(lib_pair.second.library_handle);
1001 #ifdef MOOSE_KOKKOS_ENABLED 1009 return MOOSE_VERSION;
1015 return MOOSE_VERSION;
1027 TIME_SECTION(
"setupOptions", 5,
"Setting Up Options");
1030 if (
header().length() && !getParam<bool>(
"suppress_header"))
1033 if (getParam<bool>(
"error_unused"))
1035 else if (getParam<bool>(
"allow_unused"))
1038 if (getParam<bool>(
"error_override"))
1041 if (getParam<bool>(
"trap_fpe"))
1045 if (getParam<bool>(
"no_trap_fpe"))
1046 mooseError(
"Cannot use both \"--trap-fpe\" and \"--no-trap-fpe\" flags.");
1048 else if (getParam<bool>(
"no_trap_fpe"))
1060 auto color = getParam<MooseEnum>(
"color");
1064 if (getParam<bool>(
"no_color"))
1069 char * c_color = std::getenv(
"MOOSE_COLOR");
1071 color.assign(std::string(c_color),
"While assigning environment variable MOOSE_COLOR");
1075 if (color ==
"auto")
1077 else if (color ==
"on")
1079 else if (color ==
"off")
1082 mooseAssert(
false,
"Should not hit");
1085 if (getParam<bool>(
"no_color"))
1086 mooseDeprecated(
"The --no-color flag is deprecated. Use '--color off' instead.");
1095 #if !LIBMESH_USING_THREADS 1097 mooseError(
"You specified --n-threads > 1, but there is no threading model active!");
1103 std::optional<std::set<std::string>> ignore_capabilities;
1108 "--testharness-capabilities: Should not be specified without --required-capabilities");
1110 const auto file_path = std::filesystem::absolute(
1111 std::filesystem::path(getParam<std::string>(
"testharness_capabilities")));
1113 std::ifstream file(file_path);
1115 mooseError(
"--testharness-capabilities: Could not open ", file_path);
1117 nlohmann::json root;
1121 if (
const auto it = root.find(
"capabilities"); it != root.end())
1123 if (
const auto it = root.find(
"ignore_capabilities"); it != root.end())
1124 ignore_capabilities = it->
get<std::set<std::string>>();
1126 catch (
const std::exception & e)
1129 "--testharness-capabilities: Failed to load capabilities ", file_path,
":\n", e.what());
1137 const auto & required_capabilities = getParam<std::string>(
"required_capabilities");
1139 CapabilityRegistry::CheckOptions options;
1141 options.certain =
false;
1143 if (ignore_capabilities)
1144 options.ignore_capabilities = *ignore_capabilities;
1146 CapabilityRegistry::CheckResult result;
1152 catch (
const std::exception & e)
1154 mooseError(
"--required-capablities: ", e.what());
1157 if (result.state < CapabilityRegistry::CheckState::UNKNOWN)
1159 mooseInfo(
"Required capabilities '", required_capabilities,
"' not fulfilled.");
1165 if (result.state == CapabilityRegistry::CheckState::UNKNOWN)
1167 required_capabilities,
1168 "' are not specific enough. A comparison test is performed on an undefined " 1169 "capability. Disambiguate this requirement by adding an existence/non-existence " 1170 "requirement. Example: 'unknown<1.2.3' should become 'unknown & unknown<1.2.3' " 1171 "or '!unknown | unknown<1.2.3'");
1176 if (getParam<bool>(
"minimal"))
1179 else if (getParam<bool>(
"display_version"))
1186 else if (getParam<bool>(
"help"))
1194 const std::string search =
1195 isParamSetByUser(
"dump_search") ? getParam<std::string>(
"dump_search") :
"";
1200 TIME_SECTION(
"dump", 1,
"Building Syntax Tree");
1205 if ((tree.getRoot()).is_object())
1211 Moose::out <<
"\n### START DUMP DATA ###\n" 1212 << formatter.
toString(tree.getRoot()) <<
"\n### END DUMP DATA ###" << std::endl;
1217 mooseError(
"Search parameter '", search,
"' was not found in the registered syntax.");
1219 else if (getParam<bool>(
"registry"))
1223 Moose::out <<
"Label\tType\tName\tClass\tFile\n";
1226 for (
auto & entry : objmap)
1227 for (
auto & obj : entry.second)
1228 Moose::out << entry.first <<
"\tobject\t" << obj->name() <<
"\t" << obj->_classname <<
"\t" 1229 << obj->_file <<
"\n";
1232 for (
auto & entry : actmap)
1234 for (
auto & act : entry.second)
1235 Moose::out << entry.first <<
"\taction\t" << act->_name <<
"\t" << act->_classname <<
"\t" 1236 << act->_file <<
"\n";
1241 else if (getParam<bool>(
"registry_hit"))
1245 Moose::out <<
"### START REGISTRY DATA ###\n";
1247 hit::Section root(
"");
1248 auto sec =
new hit::Section(
"registry");
1250 auto objsec =
new hit::Section(
"objects");
1251 sec->addChild(objsec);
1254 for (
auto & entry : objmap)
1255 for (
auto & obj : entry.second)
1257 auto ent =
new hit::Section(
"entry");
1258 objsec->addChild(ent);
1259 ent->addChild(
new hit::Field(
"label", hit::Field::Kind::String, entry.first));
1260 ent->addChild(
new hit::Field(
"type", hit::Field::Kind::String,
"object"));
1261 ent->addChild(
new hit::Field(
"name", hit::Field::Kind::String, obj->name()));
1262 ent->addChild(
new hit::Field(
"class", hit::Field::Kind::String, obj->_classname));
1263 ent->addChild(
new hit::Field(
"file", hit::Field::Kind::String, obj->_file));
1266 auto actsec =
new hit::Section(
"actions");
1267 sec->addChild(actsec);
1269 for (
auto & entry : actmap)
1270 for (
auto & act : entry.second)
1272 auto ent =
new hit::Section(
"entry");
1273 actsec->addChild(ent);
1274 ent->addChild(
new hit::Field(
"label", hit::Field::Kind::String, entry.first));
1275 ent->addChild(
new hit::Field(
"type", hit::Field::Kind::String,
"action"));
1276 ent->addChild(
new hit::Field(
"task", hit::Field::Kind::String, act->_name));
1277 ent->addChild(
new hit::Field(
"class", hit::Field::Kind::String, act->_classname));
1278 ent->addChild(
new hit::Field(
"file", hit::Field::Kind::String, act->_file));
1281 Moose::out << root.render();
1283 Moose::out <<
"\n### END REGISTRY DATA ###\n";
1289 const std::string search =
1290 isParamSetByUser(
"yaml_search") ? getParam<std::string>(
"yaml_search") :
"";
1301 const std::string search =
1302 isParamSetByUser(
"json_search") ? getParam<std::string>(
"json_search") :
"";
1309 "json",
"**START JSON DATA**\n",
"\n**END JSON DATA**", tree.
getRoot().dump(2));
1313 else if (getParam<bool>(
"syntax"))
1318 std::stringstream ss;
1319 for (
const auto & it :
syntax)
1320 ss << it.first <<
"\n";
1325 else if (getParam<bool>(
"show_type"))
1329 Moose::out <<
"MooseApp Type: " <<
type() << std::endl;
1333 else if (getParam<bool>(
"show_capabilities"))
1337 "**START JSON DATA**\n",
1338 "\n**END JSON DATA**",
1347 const auto & capabilities = getParam<std::string>(
"check_capabilities");
1349 CapabilityRegistry::CheckResult result;
1354 catch (
const std::exception & e)
1356 mooseError(
"--check-capablities: ", e.what());
1359 const bool pass = result.state == CapabilityRegistry::CheckState::CERTAIN_PASS;
1360 _console <<
"Capabilities '" << capabilities <<
"' are " << (pass ?
"" :
"not ") <<
"fulfilled." 1374 const auto & recover = getParam<std::string>(
"recover");
1382 auto isExclusiveParamSetByUser =
1383 [
this](
const std::vector<std::string> & group,
const std::string & param)
1387 for (
const auto & p : group)
1389 mooseError(
"Parameters '" + p +
"' and '" + param +
1390 "' are mutually exclusive. Please choose only one of them.");
1395 const std::vector<std::string> final_task_params = {
1396 "csg_only",
"mesh_only",
"split_mesh",
"parse_neml2_only"};
1397 if (isExclusiveParamSetByUser(final_task_params,
"csg_only"))
1401 mooseError(
"--csg-only cannot be used in conjunction with --distributed-mesh");
1404 mooseError(
"--csg-only is not compatible with any mesh splitting options");
1406 mooseError(
"--csg-only cannot be used in conjunction with -r refinements option");
1408 mooseError(
"--csg-only option cannot be used as a Subapp");
1410 mooseError(
"--csg-only option cannot be used in recovery mode");
1421 else if (isExclusiveParamSetByUser(final_task_params,
"mesh_only"))
1435 else if (isExclusiveParamSetByUser(final_task_params,
"split_mesh"))
1443 else if (isExclusiveParamSetByUser(final_task_params,
"parse_neml2_only"))
1455 mooseAssert(common_actions.size() <= 1,
"Should not be more than one CommonOutputAction");
1456 const Action * common = common_actions.empty() ? nullptr : *common_actions.begin();
1459 if (common && common->isParamValid(
"file_base"))
1469 size_t pos = base.find_last_of(
'.');
1484 mooseError(
"You specified --check-input, but did not provide an input file. Add -i " 1485 "<inputfile> to your command line.");
1487 mooseError(
"No input files specified. Add -i <inputfile> to your command line.");
1489 else if (
isParamValid(
"language_server") && getParam<bool>(
"language_server"))
1514 Moose::out << std::flush;
1517 const std::vector<std::string> &
1520 mooseAssert(
_parser,
"Parser is not set");
1521 return _parser->getInputFileNames();
1527 mooseAssert(
_parser,
"Parser is not set");
1528 return _parser->getLastInputFileName();
1550 for (
auto & multi_app :
feProblem().getMultiAppWarehouse().getObjects())
1551 multi_app->setAppOutputFileBase();
1559 TIME_SECTION(
"runInputFile", 3);
1587 else if (getParam<bool>(
"list_constructed_objects"))
1592 std::stringstream ss;
1593 for (
const auto & obj :
_factory.getConstructedObjects())
1596 "list_constructed_objects",
"**START OBJECT DATA**\n",
"\n**END OBJECT DATA**", ss.str());
1618 "Something went wrong, we should only get here if _check_input is true.");
1620 "Incompatible command line arguments provided. --check-input cannot be called with ",
1625 mooseError(
"The Executor is being called without being initialized. This is likely " 1627 "incompatible command line arguments");
1631 for (
auto app : apps)
1632 for (
unsigned int i = 0; i < app->numLocalApps(); i++)
1639 TIME_SECTION(
"executeExecutioner", 3);
1652 if (!result.convergedAll())
1665 mooseError(
"No executioner was specified (go fix your input file)");
1696 "MooseApp::hasRestartRecoverFileBase() instead.");
1707 case RESTARTABLE_FILTER::RECOVERABLE:
1715 std::vector<std::filesystem::path>
1718 TIME_SECTION(
"backup", 2,
"Backing Up Application to File");
1723 return writer.
write(folder_base);
1726 std::unique_ptr<Backup>
1729 TIME_SECTION(
"backup", 2,
"Backing Up Application");
1735 auto backup = std::make_unique<Backup>();
1736 packMeshBackup(*
this, *
backup);
1758 TIME_SECTION(
"restore", 2,
"Restoring Application from File");
1771 TIME_SECTION(
"restore", 2,
"Restoring Application");
1776 mooseError(
"MooseApp::restore(): Provided backup is not initialized");
1779 mooseAssert(
header,
"Header not available");
1781 auto data = std::move(
backup->data);
1782 mooseAssert(data,
"Data not available");
1806 std::unique_ptr<Backup>
1810 mooseError(
"MooseApp::finalizeRestore(): Not currently restoring");
1815 std::unique_ptr<Backup>
backup;
1819 if (
auto header_string_input = dynamic_cast<StringInputStream *>(input_streams.header.get()))
1821 auto data_string_input =
dynamic_cast<StringInputStream *
>(input_streams.data.get());
1822 mooseAssert(data_string_input,
"Should also be a string input");
1824 auto header_sstream = header_string_input->release();
1825 mooseAssert(header_sstream,
"Header not available");
1827 auto data_sstream = data_string_input->release();
1828 mooseAssert(data_sstream,
"Data not available");
1830 backup = std::make_unique<Backup>();
1831 backup->header = std::move(header_sstream);
1832 backup->data = std::move(data_sstream);
1833 packMeshBackup(*
this, *
backup);
1860 const std::string & name,
1866 mooseError(
"an executor with name '", executor->name(),
"' already exists");
1872 const std::string & name,
1881 mooseAssert(
_parser,
"Not set");
1888 return const_cast<Parser &
>(std::as_const(*this).parser());
1893 std::list<std::string> & possible_roots,
1894 std::list<std::string> & current_branch)
1901 if (
std::find(current_branch.begin(), current_branch.end(), current_executor_name) !=
1902 current_branch.end())
1904 std::stringstream exec_names_string;
1906 auto branch_it = current_branch.begin();
1908 exec_names_string << *branch_it++;
1910 for (; branch_it != current_branch.end(); ++branch_it)
1911 exec_names_string <<
", " << *branch_it;
1913 exec_names_string <<
", " << current_executor_name;
1915 mooseError(
"Executor cycle detected: ", exec_names_string.str());
1918 current_branch.push_back(current_executor_name);
1923 for (
const auto & param : params)
1925 if (params.have_parameter<ExecutorName>(param.first))
1927 const auto & dependency_name = params.get<ExecutorName>(param.first);
1929 possible_roots.remove(dependency_name);
1931 if (!dependency_name.empty())
1940 current_branch.pop_back();
1951 std::list<std::string> possibly_root;
1954 std::map<std::string, bool> already_built;
1957 std::list<std::string> possible_roots;
1960 std::list<std::string> current_branch;
1964 auto params =
_factory.getValidParams(
"NullExecutor");
1970 const auto &
name = params_entry.first;
1976 possible_roots.emplace_back(
name);
1982 if (possible_roots.size() > 1)
1984 auto root_string_it = possible_roots.begin();
1986 std::stringstream roots_string;
1988 roots_string << *root_string_it++;
1990 for (; root_string_it != possible_roots.end(); ++root_string_it)
1991 roots_string <<
", " << *root_string_it;
1993 mooseError(
"Multiple Executor roots found: ", roots_string.str());
2008 if (fail_if_not_found)
2029 TIME_SECTION(
"run", 3);
2030 if (getParam<bool>(
"show_docs"))
2034 mooseError(
"could not locate installed tests to run (unresolved binary/app name)");
2037 mooseError(
"no installed documentation found");
2043 std::ifstream ifs(docmsgfile);
2044 std::string content((std::istreambuf_iterator<char>(ifs)),
2045 (std::istreambuf_iterator<char>()));
2046 content.replace(content.find(
"$LOCAL_SITE_HOME"), content.length(), docmsg);
2050 Moose::out << docmsg <<
"\n";
2065 TIME_SECTION(
"setup", 2,
"Setting Up");
2071 mooseAssert(
_parser->getThrowOnError(),
"Should be true");
2079 catch (std::exception &
err)
2086 TIME_SECTION(
"execute", 2,
"Executing");
2093 Moose::err <<
"Syntax OK" << std::endl;
2107 for (
const auto & objname :
_factory.getConstructedObjects())
2110 "Constructed object '" + objname +
"' is not registered");
2112 citations.insert(app_citations.begin(), app_citations.end());
2117 std::string backend =
"libMesh";
2118 #ifdef MOOSE_MFEM_ENABLED 2123 citations.insert(backend_citations.begin(), backend_citations.end());
2131 for (
const auto i :
make_range(multi_app->numLocalApps()))
2132 multi_app->localApp(i)->collectCitations(citations);
2139 std::map<std::string, std::string> citations;
2146 std::vector<std::string> flattened;
2147 flattened.reserve(citations.size() * 2);
2148 for (
const auto & [key, bibtex] : citations)
2150 flattened.push_back(key);
2151 flattened.push_back(bibtex);
2153 _comm->allgather(flattened);
2154 for (std::size_t i = 0; i + 1 < flattened.size(); i += 2)
2156 [[maybe_unused]]
const auto [it, inserted] = citations.emplace(flattened[i], flattened[i + 1]);
2157 mooseAssert(inserted || it->second == flattened[i + 1],
2158 "The same citation key was registered with different BibTeX entries");
2164 for (
const auto & citation : citations)
2173 if (getParam<bool>(
"show_inputs"))
2176 std::vector<std::string> dirs;
2179 if (installable_inputs ==
"")
2182 <<
"Show inputs has not been overriden in this application.\nContact the developers of " 2183 "this appication and request that they override \"MooseApp::getInstallableInputs\".\n";
2187 mooseAssert(!show_inputs_syntax.empty(),
"show_inputs sytnax should not be empty");
2190 Moose::out <<
"The following directories are installable into a user-writeable directory:\n\n" 2191 << installable_inputs <<
'\n' 2192 <<
"\nTo install one or more directories of inputs, execute the binary with the \"" 2193 << show_inputs_syntax[0] <<
"\" flag. e.g.:\n$ " 2194 <<
_command_line->getExecutableName() <<
' ' << show_inputs_syntax[0] <<
' ' 2213 if (
comm().size() > 1)
2214 mooseError(
"The --copy-inputs option should not be ran in parallel");
2217 auto dir_to_copy = getParam<std::string>(
"copy_inputs");
2219 if (dir_to_copy.empty())
2220 mooseError(
"Error retrieving directory to copy");
2221 if (dir_to_copy.back() !=
'/')
2228 mooseError(
"could not locate installed tests to run (unresolved binary/app name)");
2234 " to get a list of installable directories.");
2238 auto dst_dir =
_command_line->getExecutableNameBase() +
"/" + dir_to_copy;
2240 if (cmdname.find_first_of(
"/") != std::string::npos)
2241 cmdname = cmdname.substr(cmdname.find_first_of(
"/") + 1, std::string::npos);
2245 "The directory \"./",
2247 "\" already exists.\nTo update/recopy the contents of this directory, rename (\"mv ",
2249 " new_dir_name\") or remove (\"rm -r ",
2251 "\") the existing directory.\nThen re-run \"",
2257 std::string cmd =
"mkdir -p " + dst_dir +
"; rsync -av " + src_dir +
" " + dst_dir;
2259 TIME_SECTION(
"copy_inputs", 2,
"Copying Inputs");
2261 mooseAssert(
comm().size() == 1,
"Should be run in serial");
2262 const auto return_value = system(cmd.c_str());
2263 if (!WIFEXITED(return_value))
2267 Moose::out <<
"Directory successfully copied into ./" << dst_dir <<
'\n';
2278 if (
comm().size() > 1)
2279 mooseError(
"The --run option should not be ran in parallel");
2282 const auto find_run_it = std::as_const(*_command_line).findCommandLineParam(
"run");
2283 const auto & cl_entries = std::as_const(*_command_line).getEntries();
2284 mooseAssert(find_run_it != cl_entries.end(),
"Didn't find the option");
2285 std::string test_args;
2286 for (
auto it = std::next(find_run_it); it != cl_entries.end(); ++it)
2287 for (
const auto & arg : it->raw_args)
2289 test_args +=
" " + arg;
2298 mooseError(
"Could not locate binary name relative to installed location");
2302 "Could not locate installed tests from the current working directory:",
2304 ".\nMake sure you are executing this command from within a writable installed inputs ",
2305 "directory.\nRun \"",
2307 " --copy-inputs <dir>\" to copy the contents of <dir> to a \"./",
2309 "_<dir>\" directory.\nChange into that directory and try \"",
2311 " --run <dir>\" again.");
2315 setenv(
"MOOSE_TEST_RUNNER_APP_NAME",
appBinaryName().c_str(),
true);
2318 Moose::out <<
"Working Directory: " << working_dir <<
"\nRunning Command: " << cmd << std::endl;
2319 mooseAssert(
comm().size() == 1,
"Should be run in serial");
2320 const auto return_value = system(cmd.c_str());
2321 if (!WIFEXITED(return_value))
2333 const std::string_view doc)
2339 catch (
const std::exception & e)
2356 std::list<std::string>
2360 std::list<std::string> checkpoint_dirs;
2367 for (
const auto & action : actions)
2371 if (!moose_object_action)
2375 if (moose_object_action->
getParam<std::string>(
"type") ==
"Checkpoint")
2379 const std::string cp_dir =
2382 checkpoint_dirs.push_back(cp_dir +
"_cp");
2385 return checkpoint_dirs;
2388 std::list<std::string>
2423 std::string library_name(app_name);
2426 size_t pos = library_name.find(
"App");
2427 if (pos != library_name.length() - 3)
2428 mooseError(
"Invalid application name: ", library_name);
2429 library_name.erase(pos);
2433 QUOTE(METHOD) +
".la";
2439 std::string app_name(library_name);
2442 if (pcrecpp::RE(
"lib(.+?)(?:-\\w+)?\\.la").Replace(
"\\1", &app_name) == 0)
2443 mooseError(
"Invalid library name: ", app_name);
2454 if (!metaname.empty() && tid != 0)
2456 "The meta data storage for '", metaname,
"' is not threaded, so the tid must be zero.");
2458 mooseAssert(metaname.empty() ||
2460 "The desired meta data name does not exist: " + metaname);
2469 if (data->typeId() != stored_data->
typeId())
2470 mooseError(
"Type mismatch found in RestartableData registration of '",
2472 "'\n\n Stored type: ",
2473 stored_data->
type(),
2478 stored_data = &data_map.addData(std::move(data));
2483 return *stored_data;
2488 std::unique_ptr<RestartableDataValue> data,
2493 mooseDeprecated(
"The use of MooseApp::registerRestartableData with a data name is " 2494 "deprecated.\n\nUse the call without a name instead.");
2496 mooseAssert(
name == data->name(),
"Inconsistent name");
2507 return it->second.first.hasData(
name);
2517 "The meta data storage for '", metaname,
"' is not threaded, so the tid must be zero.");
2523 mooseError(
"Unable to find RestartableDataValue object with name " +
name +
2524 " in RestartableDataMap");
2531 const std::filesystem::path & folder_base)
2539 reader.
setInput(meta_data_folder_base);
2551 std::vector<std::filesystem::path>
2553 const std::filesystem::path & folder_base)
2556 mooseError(
"MooseApp::writeRestartableMetaData(): Should only run on processor 0");
2562 return writer.
write(meta_data_folder_base);
2565 std::vector<std::filesystem::path>
2568 std::vector<std::filesystem::path> paths;
2574 paths.insert(paths.end(), map_paths.begin(), map_paths.end());
2582 std::string library_path,
2583 const std::string & library_name,
2586 #ifdef LIBMESH_HAVE_DLOPEN 2588 params.
set<std::string>(
"app_name") = app_name;
2590 params.
set<std::string>(
"registration_method") = app_name +
"__registerApps";
2591 params.
set<std::string>(
"library_path") = library_path;
2593 const auto effective_library_name =
2595 params.
set<std::string>(
"library_name") = effective_library_name;
2596 params.
set<
bool>(
"library_load_dependencies") = lib_load_deps;
2599 std::ostringstream oss;
2601 auto successfully_loaded =
false;
2603 oss <<
'"' << app_name <<
"\" is not a registered application name.\n" 2604 <<
"No search paths were set. We made no attempts to locate the corresponding library " 2613 oss <<
'"' << app_name <<
"\" is not a registered application name.\n" 2614 <<
"Unable to locate library archive for \"" << app_name
2615 <<
"\".\nWe attempted to locate the library archive \"" << effective_library_name
2616 <<
"\" in the following paths:\n\t";
2617 std::copy(paths.begin(), paths.end(), infix_ostream_iterator<std::string>(oss,
"\n\t"));
2620 successfully_loaded =
true;
2623 if (!successfully_loaded)
2625 oss <<
"\nMake sure you have compiled the library and either set the \"library_path\" " 2626 "variable in your input file or exported \"MOOSE_LIBRARY_PATH\".\n";
2632 libmesh_ignore(app_name, library_path, library_name, lib_load_deps);
2633 mooseError(
"Dynamic Loading is either not supported or was not detected by libMesh configure.");
2642 std::string library_path,
2643 const std::string & library_name)
2645 #ifdef LIBMESH_HAVE_DLOPEN 2647 params.
set<std::string>(
"app_name") = app_name;
2649 params.
set<std::string>(
"registration_method") = app_name +
"__registerAll";
2650 params.
set<std::string>(
"library_path") = library_path;
2651 params.
set<std::string>(
"library_name") =
2657 params.
set<
bool>(
"library_load_dependencies") =
false;
2662 mooseError(
"Dynamic Loading is either not supported or was not detected by libMesh configure.");
2670 const auto library_name = params.
get<std::string>(
"library_name");
2673 for (
const auto & path : paths)
2676 path +
'/' + library_name, params, params.
get<
bool>(
"library_load_dependencies"));
2682 const bool load_dependencies)
2685 std::string dl_lib_filename;
2689 pcrecpp::RE re_deps(
"(/\\S*\\.la)");
2691 std::ifstream la_handle(library_filename.c_str());
2692 if (la_handle.is_open())
2694 while (std::getline(la_handle, line))
2697 if (line.find(
"dlname=") != std::string::npos)
2700 dl_lib_filename = line.substr(8, line.size() - 9);
2702 if (line.find(
"dependency_libs=") != std::string::npos)
2704 if (load_dependencies)
2706 pcrecpp::StringPiece input(line);
2707 pcrecpp::StringPiece depend_library;
2708 while (re_deps.FindAndConsume(&input, &depend_library))
2722 if (dl_lib_filename.empty())
2725 const auto & [dir, file_name] = MooseUtils::splitFileName(library_filename);
2741 #ifdef LIBMESH_HAVE_DLOPEN 2742 void *
const lib_handle = dlopen(dl_lib_full_path.c_str(), RTLD_LAZY);
2744 void *
const lib_handle =
nullptr;
2750 "\" exists and has proper permissions, but cannot by dynamically loaded.\nThis " 2751 "generally means that the loader was unable to load one or more of the " 2752 "dependencies listed in the supplied library (see otool or ldd).\n",
2759 auto insert_ret =
_lib_handles.insert(std::make_pair(file_name, lib_info));
2760 mooseAssert(insert_ret.second ==
true,
"Error inserting into lib_handles map");
2762 dyn_lib_it = insert_ret.first;
2766 const auto registration_method = params.
get<std::string>(
"registration_method");
2767 auto & entry_sym_from_curr_lib = dyn_lib_it->second.entry_symbols;
2769 if (entry_sym_from_curr_lib.find(registration_method) == entry_sym_from_curr_lib.end())
2775 #ifdef LIBMESH_HAVE_DLOPEN 2776 void * registration_handle =
2777 dlsym(dyn_lib_it->second.library_handle, registration_method.c_str());
2779 void * registration_handle =
nullptr;
2782 if (registration_handle)
2788 using register_app_t =
void (*)();
2789 register_app_t *
const reg_ptr =
reinterpret_cast<register_app_t *
>(®istration_handle);
2796 register_app_t *
const reg_ptr =
reinterpret_cast<register_app_t *
>(®istration_handle);
2806 entry_sym_from_curr_lib.insert(registration_method);
2811 #if defined(DEBUG) && defined(LIBMESH_HAVE_DLOPEN) 2815 if (!registration_handle)
2817 registration_method,
2821 "This doesn't necessarily indicate an error condition unless you believe that " 2822 "the method should exist in that library.\n",
2829 std::set<std::string>
2833 std::set<std::string> paths;
2835 paths.insert(it.first);
2840 std::set<std::string>
2843 std::set<std::string> paths;
2845 if (!library_path.empty())
2847 std::vector<std::string> tmp_paths;
2850 paths.insert(tmp_paths.begin(), tmp_paths.end());
2853 char * moose_lib_path_env = std::getenv(
"MOOSE_LIBRARY_PATH");
2854 if (moose_lib_path_env)
2856 std::string moose_lib_path(moose_lib_path_env);
2857 std::vector<std::string> tmp_paths;
2860 paths.insert(tmp_paths.begin(), tmp_paths.end());
2875 return std::string(
"");
2893 TIME_SECTION(
"createMinimalApp", 3,
"Creating Minimal App");
2899 action_params.
set<std::string>(
"type") =
"GeneratedMesh";
2902 std::shared_ptr<MooseObjectAction> action = std::static_pointer_cast<
MooseObjectAction>(
2908 params.set<
unsigned int>(
"nx") = 1;
2918 action_params.
set<std::string>(
"type") =
"Transient";
2921 std::shared_ptr<MooseObjectAction> action = std::static_pointer_cast<
MooseObjectAction>(
2926 params.
set<
unsigned int>(
"num_steps") = 1;
2927 params.set<
Real>(
"dt") = 1;
2937 action_params.
set<
bool>(
"_solve") =
false;
2940 std::shared_ptr<Action> action = std::static_pointer_cast<
Action>(
2951 action_params.
set<
bool>(
"console") =
false;
2954 std::shared_ptr<Action> action =
2969 [&
name](
const std::shared_ptr<RelationshipManager> & rm)
2978 auto & existing_for_whom = acceptor.
forWhom();
2981 for (
auto & fw : donor.
forWhom())
2983 if (
std::find(existing_for_whom.begin(), existing_for_whom.end(), fw) ==
2984 existing_for_whom.end())
3008 std::set<std::shared_ptr<RelationshipManager>> rms_to_erase;
3012 if (*existing_rm >= *new_rm)
3015 donateForWhom(*new_rm, *existing_rm);
3020 else if (*new_rm >= *existing_rm)
3021 rms_to_erase.emplace(existing_rm);
3027 for (
const auto & rm_to_erase : rms_to_erase)
3029 donateForWhom(*rm_to_erase, *new_rm);
3041 static const std::string suffix =
"-mesh.cpa.gz";
3045 std::filesystem::path
3047 const std::string & map_suffix)
3050 std::filesystem::path(
"meta_data" + map_suffix));
3053 std::filesystem::path
3056 auto folder = folder_base;
3057 folder +=
"-restart-" + std::to_string(
processor_id());
3065 return action->parameters().getHitNode();
3082 mooseError(
"The template rm does not exist in our _template_to_clones map");
3084 auto & mesh_to_clone_map = outer_it->second;
3085 auto inner_it = mesh_to_clone_map.find(&
mesh);
3086 if (inner_it == mesh_to_clone_map.end())
3087 mooseError(
"We should have the mesh key in our mesh");
3089 return *inner_it->second;
3099 const MeshBase *
const undisp_lm_mesh =
mesh->getMeshPtr();
3101 if (undisp_lm_mesh &&
hasRMClone(*rm, *undisp_lm_mesh))
3103 undisp_clone = &
getRMClone(*rm, *undisp_lm_mesh);
3104 const_cast<MeshBase *
>(undisp_lm_mesh)->remove_ghosting_functor(*undisp_clone);
3108 MeshBase *
const disp_lm_mesh = displaced_mesh ? &displaced_mesh->getMesh() :
nullptr;
3110 if (disp_lm_mesh &&
hasRMClone(*rm, *disp_lm_mesh))
3112 disp_clone = &
getRMClone(*rm, *disp_lm_mesh);
3121 problem.removeAlgebraicGhostingFunctor(*undisp_clone);
3122 problem.removeCouplingGhostingFunctor(*undisp_clone);
3125 auto * dp = problem.getDisplacedProblem().get();
3126 if (dp && disp_clone)
3127 dp->removeAlgebraicGhostingFunctor(*disp_clone);
3130 _factory.releaseSharedObjects(*rm);
3138 const DofMap *
const dof_map)
3141 auto it = mesh_to_clone.find(&
mesh);
3142 if (it != mesh_to_clone.end())
3145 auto & clone_rm = *it->second;
3146 if (!clone_rm.dofMap() && dof_map)
3148 clone_rm.init(moose_mesh,
mesh, dof_map);
3149 else if (clone_rm.dofMap() && dof_map && (clone_rm.dofMap() != dof_map))
3150 mooseError(
"Attempting to create and initialize an existing clone with a different DofMap. " 3151 "This should not happen.");
3161 auto pr = mesh_to_clone.emplace(
3162 std::make_pair(&const_cast<const MeshBase &>(
mesh),
3163 dynamic_pointer_cast<RelationshipManager>(template_rm.
clone())));
3164 mooseAssert(pr.second,
"An insertion should have happened");
3165 auto & clone_rm = *pr.first->second;
3166 clone_rm.init(moose_mesh,
mesh, dof_map);
3177 if (rm->attachGeometricEarly())
3190 if (moose_mesh_base != &mesh)
3191 mooseError(
"The MooseMesh MeshBase and the MeshBase we're trying to attach " 3192 "relationship managers to are different");
3205 bool attach_geometric_rm_final)
3209 if (!rm->isType(rm_type))
3223 if (!rm->attachGeometricEarly() && !attach_geometric_rm_final)
3226 mesh->allowRemoteElementRemoval(
false);
3230 const DofMap *
const undisp_sys_dof_map =
3238 attach_geometric_rm_final && disp_moose_mesh)
3241 const DofMap * disp_sys_dof_map =
nullptr;
3248 mooseError(
"The displaced mesh should not yet exist at the time that we are attaching " 3249 "early geometric relationship managers.");
3259 mooseError(
"We must have an executioner by now or else we do not have to data to add " 3260 "algebraic or coupling functors to in MooseApp::attachRelationshipManagers");
3264 auto & undisp_moose_mesh = problem.mesh();
3266 auto & undisp_sys_dof_map = undisp_sys.
dofMap();
3267 auto & undisp_mesh = undisp_moose_mesh.getMesh();
3269 if (rm->useDisplacedMesh() && problem.getDisplacedProblem())
3283 problem.addCouplingGhostingFunctor(
3291 auto & disp_mesh = disp_moose_mesh.getMesh();
3301 problem.addCouplingGhostingFunctor(
3306 problem.addAlgebraicGhostingFunctor(
3318 std::vector<std::pair<std::string, std::string>>
3321 std::vector<std::pair<std::string, std::string>> info_strings;
3326 std::stringstream oss;
3327 oss << rm->getInfo();
3329 auto & for_whom = rm->forWhom();
3331 if (!for_whom.empty())
3335 std::copy(for_whom.begin(), for_whom.end(), infix_ostream_iterator<std::string>(oss,
", "));
3338 info_strings.emplace_back(std::make_pair(
Moose::stringify(rm->getType()), oss.str()));
3349 std::map<std::string, unsigned int> counts;
3357 counts[
demangle(
typeid(*gf).name())]++;
3360 for (
const auto & pair : counts)
3361 info_strings.emplace_back(std::make_pair(
3362 "Default", pair.first + (pair.second > 1 ?
" x " + std::to_string(pair.second) :
"")));
3373 std::map<std::string, unsigned int> counts;
3375 for (
auto & gf :
as_range(d_mesh->getMesh().ghosting_functors_begin(),
3376 d_mesh->getMesh().ghosting_functors_end()))
3381 counts[
demangle(
typeid(*gf).name())]++;
3384 for (
const auto & pair : counts)
3385 info_strings.emplace_back(
3386 std::make_pair(
"Default",
3387 pair.first + (pair.second > 1 ?
" x " + std::to_string(pair.second) :
"") +
3388 " for DisplacedMesh"));
3391 return info_strings;
3403 std::vector<std::string> not_declared;
3405 for (
const auto & data : meta_data)
3406 if (!data.declared())
3407 not_declared.push_back(data.name());
3409 if (!not_declared.empty())
3411 std::ostringstream oss;
3413 not_declared.begin(), not_declared.end(), infix_ostream_iterator<std::string>(oss,
", "));
3417 "' meta-data properties were retrieved but never declared: ",
3431 mooseError(
"Unable to find RestartableDataMap object for the supplied name '",
3433 "', did you call registerRestartableDataMapName in the application constructor?");
3434 return iter->second.first;
3446 if (!suffix.empty())
3447 std::transform(suffix.begin(), suffix.end(), suffix.begin(), ::tolower);
3448 suffix.insert(0,
"_");
3458 mooseError(
"MooseApp::getRestartableDataMapName: The name '",
name,
"' is not registered");
3459 return it->second.second;
3468 std::make_unique<RestartableData<PerfGraph>>(
"perf_graph",
3472 getParam<bool>(
"perf_graph_live_all"),
3473 !getParam<bool>(
"disable_perf_graph_live"));
3485 auto solution_invalidity =
3486 std::make_unique<RestartableData<SolutionInvalidity>>(
"solution_invalidity",
nullptr, *
this);
3500 #ifdef MOOSE_LIBTORCH_ENABLED 3504 const auto pname =
"--compute-device";
3505 if (device_enum ==
"cuda")
3508 if (!torch::cuda::is_available())
3509 mooseError(pname,
"=cuda: CUDA support is not available in the linked libtorch library");
3510 return torch::kCUDA;
3512 mooseError(pname,
"=cuda: CUDA is not supported on your platform");
3515 else if (device_enum ==
"mps")
3518 if (!torch::mps::is_available())
3519 mooseError(pname,
"=mps: MPS support is not available in the linked libtorch library");
3522 mooseError(pname,
"=mps: MPS is not supported on your platform");
3525 else if (device_enum ==
"xpu")
3527 #ifdef MOOSE_HAVE_XPU 3528 if (!torch::xpu::is_available())
3529 mooseError(pname,
"=xpu: XPU support is not available in the linked libtorch library");
3532 mooseError(pname,
"=xpu: XPU is not supported in the current application");
3535 else if (device_enum !=
"cpu")
3538 "' is not currently supported by the MOOSE libtorch integration.");
3545 const std::string & start_marker,
3546 const std::string & end_marker,
3547 const std::string & data)
const 3552 Moose::out << start_marker << data << end_marker << std::endl;
3557 const auto & filename = getParam<std::string>(param);
3559 std::ofstream
out(filename.c_str());
3562 std::ofstream
out(filename.c_str());
3563 out << data << std::flush;
3567 mooseError(
"Unable to open file `", filename,
"` for writing ", param,
" data to it.");
3573 const std::string_view doc)
3581 const std::string_view doc)
3588 const std::string_view value,
3589 const std::string_view doc)
3597 const std::string_view doc)
3604 ::mooseDeprecated(
"MooseApp::addCapability() is deprecated (adding capability '",
3606 "'); use one of MooseApp::add[Bool,Int,String]Capability instead.");
3623 #ifdef MOOSE_MFEM_ENABLED 3630 auto string_set = std::set<std::string>(string_vec.begin(), string_vec.end());
3633 _mfem_device = std::make_shared<mfem::Device>(device_string);
3635 _mfem_device->SetGPUAwareMPI(mfem::GetEnv(
"MFEM_GPU_AWARE_MPI") ?
true : gpu_aware_mpi);
3638 else if (!device_string.empty() && string_set !=
_mfem_devices)
3641 MooseUtils::join(string_set,
" "),
3642 "', but we have already " 3643 "configured the MFEM device " 3644 "object with the devices '",
void makedirs(const std::string &dir_name, bool throw_on_failure)
std::string name(const ElemQuality q)
GhostingFunctorIterator ghosting_functors_begin() const
std::list< std::string > getCheckpointFiles() const
Extract all possible checkpoint file names.
virtual bool constructingMeshGenerators() const
Whether this app is constructing mesh generators.
std::list< std::string > getCheckpointDirectories() const
Get all checkpoint directories.
static const std::string & checkpointSuffix()
The file suffix for the checkpoint mesh.
std::string getFileName(bool stripLeadingPath=true) const
Return the primary (first) filename that was parsed Note: When stripLeadingPath is false...
void mooseInfo(Args &&... args) const
void collectCitations(std::map< std::string, std::string > &citations) const
Collects the BibTeX citations for the modules/objects constructed in this app and the finite element ...
virtual void meshChanged(bool intermediate_change, bool contract_mesh, bool clean_refinement_flags)
Update data after a mesh change.
static const std::map< std::string, std::map< std::string, std::string > > & getCitations()
Returns the registered citations, keyed by app/module name and then by BibTeX key (app/module name ->...
std::string docsDir(const std::string &app_name)
void build()
Parse an input file (or text string if provided) consisting of hit syntax and setup objects in the MO...
void addExecutorParams(const std::string &type, const std::string &name, const InputParameters ¶ms)
Adds the parameters for an Executor to the list of parameters.
virtual std::string getPrintableName() const
Get printable name of the application.
virtual std::string getInstallableInputs() const
Method to retrieve the installable inputs from a given applications <app>Revision.h file.
void write(std::ostream &header_stream, std::ostream &data_stream)
Writes the restartable data to header stream header_stream and data stream data_stream.
static bool isRelocated()
PerfGraph & _perf_graph
The PerfGraph object for this application (recoverable)
void setOutputPosition(const Point &p)
Tell the app to output in a specific position.
virtual void write(const std::string &name) override
KOKKOS_INLINE_FUNCTION const T * find(const T &target, const T *const begin, const T *const end)
Find a value in an array.
const bool _check_input
true if we want to just check the input file
std::unordered_map< std::string, std::pair< std::string, std::unique_ptr< InputParameters > > > _executor_params
Used in building the Executors Maps the name of the Executor block to the <type, params> ...
static const RegistryEntryBase & objData(const std::string &name)
bool isUltimateMaster() const
Whether or not this app is the ultimate master app.
std::map< Moose::RelationshipManagerType, std::set< const RelationshipManager * > > _attached_relationship_managers
The relationship managers that have been attached (type -> RMs)
const InputParameters & _pars
The object's parameters.
Reader for restartable data written by the RestartableDataWriter.
std::string _restart_recover_base
The base name to restart/recover from. If blank then we will find the newest checkpoint file...
void dynamicRegistration(const libMesh::Parameters ¶ms)
Helper method for dynamic loading of objects.
void tokenize(const std::string &str, std::vector< T > &elements, unsigned int min_len=1, const std::string &delims="/")
This function will split the passed in string on a set of delimiters appending the substrings to the ...
bool hasRestartableMetaData(const std::string &name, const RestartableDataMapName &metaname) const
virtual void setupOptions()
Setup options based on InputParameters.
PerfGraph & createRecoverablePerfGraph()
Creates a recoverable PerfGraph.
std::shared_ptr< DisplacedProblem > displaced_problem
std::string libNameToAppName(const std::string &library_name) const
Converts a library name to an application name:
const unsigned int invalid_uint
RelationshipManagerType
Main types of Relationship Managers.
const std::shared_ptr< Parser > _parser
Parser for parsing the input file (owns the root hit node)
std::string getFrameworkVersion() const
Returns the framework version.
Base class for everything in MOOSE with a name and a type.
const std::multimap< std::string, ActionInfo > & getAssociatedActions() const
Return all Syntax to Action associations.
void setRecover(bool value)
void buildFullTree(const std::string &search_string)
Use MOOSE Factories to construct a full parse tree for documentation or echoing input.
std::vector< std::pair< std::string, std::string > > getRelationshipManagerInfo() const
Returns the Relationship managers info suitable for printing.
const T & getParam(const std::string &name) const
Retrieve a parameter for the object.
bool hasRMClone(const RelationshipManager &template_rm, const MeshBase &mesh) const
torch::DeviceType determineLibtorchDeviceType(const MooseEnum &device) const
Function to determine the device which should be used by libtorch on this application.
bool _file_base_set_by_user
Whether or not file base is set through input or setOutputFileBase by MultiApp.
const Capability & get(const std::string &capability) const
Get a capability.
const Action * getCurrentAction() const
bool _output_position_set
Whether or not an output position has been set for this app.
void addDependency(const std::string &task, const std::string &pre_req)
std::unique_ptr< TheWarehouse > _the_warehouse
The combined warehouse for storing any MooseObject based object.
InputParameters getValidParams(const std::string &name)
void setCheckUnusedFlag(bool warn_is_error=false)
Set a flag so that the parser will either warn or error when unused variables are seen after parsing ...
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application...
bool hasInitialBackup() const
void setInput(std::unique_ptr< std::stringstream > header_stream, std::unique_ptr< std::stringstream > data_stream)
Sets the input stream for reading from the stringstreams header_stream and data_stream for the header...
static std::filesystem::path metaDataFolderBase(const std::filesystem::path &folder_base, const std::string &map_suffix)
The file suffix for meta data (header and data)
bool _warnings_are_errors
Variable to toggle any warning into an error (includes deprecated code warnings)
InputParameterWarehouse & getInputParameterWarehouse()
Get the InputParameterWarehouse for MooseObjects.
bool tokenizeAndConvert(const std::string &str, std::vector< T > &tokenized_vector, const std::string &delimiter=" \\\)
tokenizeAndConvert splits a string using delimiter and then converts to type T.
static const RestartableDataMapName MESH_META_DATA
std::unordered_map< RestartableDataMapName, std::pair< RestartableDataMap, std::string > > _restartable_meta_data
General storage for custom RestartableData that can be added to from outside applications.
void registerTaskName(const std::string &task, bool should_auto_build=false)
Method to register a new task.
static Capabilities & getCapabilities(const GetCapabilitiesPassKey)
Get the singleton Capabilities.
virtual const std::type_info & typeId() const =0
The type ID of the underlying data.
std::shared_ptr< MooseMesh > & displacedMesh()
static const std::map< std::string, std::vector< std::shared_ptr< RegistryEntryBase > > > & allActions()
Returns a per-label keyed map of all Actions in the registry.
virtual std::unique_ptr< GhostingFunctor > clone() const=0
virtual std::string appBinaryName() const
const InputParameters & parameters() const
Get the parameters of the object.
const std::shared_ptr< MooseMesh > & getMesh() const
std::string getOutputFileBase(bool for_non_moose_build_output=false) const
Get the output file base name.
static void addInputParam(InputParameters ¶ms)
RelationshipManager & getRMClone(const RelationshipManager &template_rm, const MeshBase &mesh) const
Return the relationship manager clone originally created from the provided template relationship mana...
void setFinalTask(const std::string &task)
void deallocateKokkosMemoryPool()
Deallocate Kokkos memory pool.
bool runInputs()
Handles the run input parameter logic: Checks to see whether a directory exists in user space and lau...
void registerRestartableNameWithFilter(const std::string &name, Moose::RESTARTABLE_FILTER filter)
NOTE: This is an internal function meant for MOOSE use only!
virtual void run()
Run the application.
void removeRelationshipManager(std::shared_ptr< RelationshipManager > relationship_manager)
Purge this relationship manager from meshes and DofMaps and finally from us.
Real _start_time
The time at which to start the simulation.
Writer for restartable data, to be read by the RestartableDataReader.
This attribute describes sorting state.
void createExecutors()
After adding all of the Executor Params - this function will actually cause all of them to be built...
void recursivelyCreateExecutors(const std::string ¤t_executor_name, std::list< std::string > &possible_roots, std::list< std::string > ¤t_branch)
Internal function used to recursively create the executor objects.
bool forceRestart() const
Whether or not we are forcefully restarting (allowing the load of potentially incompatibie checkpoint...
std::filesystem::path restartFolderBase(const std::filesystem::path &folder_base) const
The file suffix for restartable data.
const bool _use_split
Whether or not we are using a (pre-)split mesh (automatically DistributedMesh)
void remove_ghosting_functor(GhostingFunctor &ghosting_functor)
void registerPetscCitation(const std::string &bibtex)
Register a BibTeX entry with PETSc's citation list so that it is printed (alongside the run-specific ...
bool hasRelationshipManager(const std::string &name) const
Returns a Boolean indicating whether a RelationshipManater exists with the same name.
Base class for MOOSE-based applications.
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
const Parallel::Communicator & comm() const
static Moose::Capability & addCapability(const std::string_view capability, const Moose::Capability::Value &value, const std::string_view doc)
Deprecated method for adding a capability.
bool hasRestartableDataMap(const RestartableDataMapName &name) const
void addActionBlock(std::shared_ptr< Action > blk)
This method add an Action instance to the warehouse.
void restoreMeshFromInitialBackup(MooseMesh &mesh)
Restore mesh from this app's initial Backup object and consume the mesh checkpoint entries...
std::set< std::string > _mfem_devices
MFEM supported devices based on user-provided config.
Syntax _syntax
Syntax of the input file.
Syntax & syntax()
Returns a writable reference to the syntax object.
std::map< std::string, std::shared_ptr< Executor > > _executors
Pointers to all of the Executors for this run.
std::vector< std::filesystem::path > writeRestartableMetaData(const RestartableDataMapName &name, const std::filesystem::path &folder_base)
Writes the restartable meta data for name with a folder base of folder_base.
ExecuteMooseObjectWarehouse< MultiApp > & getMultiAppWarehouse()
bool _trap_fpe
Whether or not FPE trapping should be turned on.
int exitCode() const
Get the shell exit code for the application.
GhostingFunctorIterator ghosting_functors_end() const
processor_id_type processor_id() const
Returns the MPI processor ID of the current processor.
static const std::map< std::string, std::vector< std::shared_ptr< RegistryEntryBase > > > & allObjects()
Returns a per-label keyed map of all MooseObjects in the registry.
std::string installedInputsDir(const std::string &app_name, const std::string &dir_name, const std::string &extra_error_msg)
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...
Helper class to hold streams for Backup and Restore operations.
const hit::Node * getCurrentActionHitNode() const
ActionWarehouse _action_warehouse
Where built actions are stored.
std::string realpath(const std::string &path)
RestartableDataReader _rd_reader
void checkMetaDataIntegrity() const
Function to check the integrity of the restartable meta data structure.
const std::list< Action * > & getActionListByName(const std::string &task) const
Retrieve a constant list of Action pointers associated with the passed in task.
virtual const std::vector< std::string > & forWhom() const
The object (or Action) this RelationshipManager was built for.
static InputParameters validParams()
bool isRestarting() const
Whether or not this is a "restart" calculation.
bool isSplitMesh() const
Whether or not this is a split mesh operation.
RestartableDataMap & getRestartableDataMap(const RestartableDataMapName &name)
Return a reference to restartable data for the specific type flag.
Holds the syntax in a Json::Value tree.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
FEProblemBase & feProblem() const
std::shared_ptr< Action > create(const std::string &action, const std::string &action_name, InputParameters ¶meters)
MooseApp(const InputParameters ¶meters)
Constructor is protected so that this object is constructed through the AppFactory object...
std::optional< MooseEnum > getComputeDevice() const
Get the device accelerated computations are supposed to be running on.
void allowRemoteElementRemoval(bool allow_removal)
Set whether to allow remote element removal.
std::vector< RestartableDataMap > _restartable_data
Where the restartable data is held (indexed on tid)
std::string camelCaseToUnderscore(const std::string &camel_case_name)
RelationshipManager & createRMFromTemplateAndInit(const RelationshipManager &template_rm, MooseMesh &moose_mesh, MeshBase &mesh, const libMesh::DofMap *dof_map=nullptr)
Take an input relationship manager, clone it, and then initialize it with provided mesh and optional ...
void setOutputFileBase(const std::string &output_file_base)
Override the selection of the output file base name.
This class wraps provides and tracks access to command line parameters.
int _exit_code
The exit code.
Storage for restartable data that is ordered based on insertion order.
std::shared_ptr< MooseMesh > & mesh()
std::variant< bool, int, std::string > Value
A capability can have a bool, int, or string value.
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
MeshGeneratorSystem _mesh_generator_system
The system that manages the MeshGenerators.
void attachRelationshipManagers(Moose::RelationshipManagerType rm_type, bool attach_geometric_rm_final=false)
Attach the relationship managers of the given type Note: Geometric relationship managers that are sup...
const MeshBase * getMeshPtr() const
bool _start_time_set
Whether or not an start time has been set.
virtual libMesh::DofMap & dofMap()
Gets writeable reference to the dof map.
void allow_remote_element_removal(bool allow)
void libmesh_ignore(const Args &...)
void possiblyLoadRestartableMetaData(const RestartableDataMapName &name, const std::filesystem::path &folder_base)
Loads the restartable meta data for name if it is available with the folder base folder_base.
const std::string & name() const
Get the name of the class.
bool showInputs() const
Prints a message showing the installable inputs for a given application (if getInstallableInputs has ...
bool addRelationshipManager(std::shared_ptr< RelationshipManager > relationship_manager)
Transfers ownership of a RelationshipManager to the application for lifetime management.
RestartableDataValue & getRestartableMetaData(const std::string &name, const RestartableDataMapName &metaname, THREAD_ID tid)
std::shared_ptr< NullExecutor > _null_executor
Used to return an executor that does nothing.
const T & get(std::string_view) const
const std::string & getLastInputFileName() const
virtual void preBackup()
Insertion point for other apps that is called before backup()
InputParameters & getObjectParams()
Retrieve the parameters of the object to be created by this action.
void setErrorOverridden()
Set a flag so that the parser will throw an error if overridden parameters are detected.
void resetFileBase()
Resets the file base for all FileOutput objects.
virtual void postRestore(const bool)
Insertion point for other apps that is called after restore()
T command_line_value(const std::string &, T)
void loadLibraryAndDependencies(const std::string &library_filename, const libMesh::Parameters ¶ms, bool load_dependencies=true)
Recursively loads libraries and dependencies in the proper order to fully register a MOOSE applicatio...
virtual std::unique_ptr< Base > create()=0
Tracks the libmesh system number that a MooseObject is associated with.
const std::vector< std::shared_ptr< T > > & getObjects(THREAD_ID tid=0) const
Retrieve complete vector to the all/block/boundary restricted objects for a given thread...
bool _restart
Whether or not this is a restart run.
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
MeshBase & getMesh()
Accessor for the underlying libMesh Mesh object.
std::unique_ptr< Backup > backup()
Backs up the application memory in a Backup.
bool _deprecated_is_error
Variable to toggle only deprecated warnings as errors.
Generic AppFactory class for building Application objects.
RESTARTABLE_FILTER
The filter type applied to a particular piece of "restartable" data.
void clearAppParams(const InputParameters ¶ms, const ClearAppParamsKey)
Clears the stored parameters for the given application parameteres.
void mooseDeprecated(Args &&... args) const
Emits a deprecation warning prefixed with the object name and type, and a stack trace.
void meshChanged()
Calls the meshChanged method for every output object.
void setErrorOnLoadWithDifferentNumberOfProcessors(bool value)
void setActive(bool active)
Turn on or off timing.
RestartableDataValue & registerRestartableData(std::unique_ptr< RestartableDataValue > data, THREAD_ID tid, bool read_only, const RestartableDataMapName &metaname="")
SimpleRange< IndexType > as_range(const std::pair< IndexType, IndexType > &p)
void initSyntaxFormatter(SyntaxFormatterType type, bool dump_mode)
Creates a syntax formatter for printing.
Specialized factory for generic Action System objects.
void setMFEMDevice(const std::string &device_string, bool gpu_aware_mpi, Moose::PassKey< MFEMProblemSolve >)
Create/configure the MFEM device with the provided device_string.
void setRestart(bool value)
Sets the restart/recover flags.
AttribBoundaries tracks all boundary IDs associated with an object.
std::shared_ptr< Executioner > _executioner
Pointer to the executioner of this run (typically build by actions)
static Moose::Capability & addIntCapability(const std::string_view capability, const int value, const std::string_view doc)
Register an integer capability.
MooseMesh wraps a libMesh::Mesh object and enhances its capabilities by caching additional data and s...
ActionFactory _action_factory
The Factory responsible for building Actions.
std::string runTestsExecutable()
An entry for a single capability.
void disableLivePrint()
Completely disables Live Print (cannot be restarted)
const std::string & type() const
Get the type of this class.
void restoreFromInitialBackup(const bool for_restart)
Restores from a "initial" backup, that is, one set in _initial_backup.
std::string underscoreToCamelCase(const std::string &underscore_name, bool leading_upper_case)
const Parser & parser() const
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
RegistrationType
Enumeration for holding the valid types of dynamic registrations allowed.
Executioners are objects that do the actual work of solving your problem.
enum MooseApp::UNUSED_CHECK _enable_unused_check
bool _recover
Whether or not this is a recovery run.
void buildJsonSyntaxTree(JsonSyntaxTree &tree) const
Use MOOSE Factories to construct a parameter tree for documentation or echoing input.
Point _output_position
The output position.
void mooseDeprecated(Args &&... args)
Emit a deprecated code/feature message with the given stringified, concatenated args.
OStreamProxy err(std::cerr)
const std::shared_ptr< CommandLine > _command_line
The CommandLine object.
void errorCheck(const libMesh::Parallel::Communicator &comm, bool warn_unused, bool err_unused)
const nlohmann::json & getRoot() const
Get the root of the tree.
bool _error_overridden
Indicates whether warnings or errors are displayed when overridden parameters are detected...
virtual std::string getVersion() const
Returns the current version of the framework or application (default: framework version).
SolutionInvalidity & createRecoverableSolutionInvalidity()
Creates a recoverable SolutionInvalidity.
bool _heap_profiling
Memory profiling.
std::string getPrimaryFileName(bool stripLeadingPath=true) const
Return the primary (first) filename that was parsed.
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
std::string stringify(const T &t)
conversion to string
Class for storing and utilizing output objects.
std::string demangle(const char *name)
void addForWhom(const std::string &for_whom)
Add another name to for_whom.
Interface for objects interacting with the PerfGraph.
Executioner * getExecutioner() const
Retrieve the Executioner for this App.
std::set< std::string > getLibrarySearchPaths(const std::string &library_path_from_param) const
Return the paths searched by MOOSE when loading libraries.
void broadcast(T &data, const unsigned int root_id=0, const bool identical_sizes=false) const
The SolutionInvalidity will contain all the information about the occurrence(s) of solution invalidit...
std::unordered_map< std::string, DynamicLibraryInfo > _lib_handles
The library archive (name only), registration method and the handle to the method.
void outputMachineReadableData(const std::string ¶m, const std::string &start_marker, const std::string &end_marker, const std::string &data) const
Outputs machine readable data (JSON, YAML, etc.) either to the screen (if no filename was provided as...
virtual Moose::FEBackend feBackend() const
static std::filesystem::path restartableDataFolder(const std::filesystem::path &folder_base)
bool meshChangedForBackup() const
Whether this app requires mesh topology data in its next Backup object.
virtual std::string type() const =0
String identifying the type of parameter stored.
static AppFactory & instance()
Get the instance of the AppFactory.
Residual objects have this attribute.
const std::string & getCurrentTaskName() const
const std::string & getRestartableDataMapName(const RestartableDataMapName &name) const
bool hasRecoverFileBase() const
std::map< const RelationshipManager *, std::map< const MeshBase *, std::unique_ptr< RelationshipManager > > > _template_to_clones
Map from a template relationship manager to a map in which the key-value pairs represent the MeshBase...
bool hasRestartRecoverFileBase() const
Return true if the recovery file base is set.
void registerRestartableDataMapName(const RestartableDataMapName &name, std::string suffix="")
Reserve a location for storing custom RestartableDataMap objects.
void restore(const std::filesystem::path &folder_base, const bool for_restart)
Restore an application from file.
bool _trap_fpe
Variable indicating whether we will enable FPE trapping for this run.
void loadRestartableMetaData(const std::filesystem::path &folder_base)
Loads all available restartable meta data if it is available with the folder base folder_base...
static bool isRegisteredObj(const std::string &name)
std::filesystem::path pathjoin(const std::filesystem::path &p)
const bool _distributed_mesh_on_command_line
This variable indicates that DistributedMesh should be used for the libMesh mesh underlying MooseMesh...
virtual void executeExecutioner()
Execute the Executioner that was built.
void setSinglePetscOption(const std::string &name, const std::string &value="", FEProblemBase *const problem=nullptr)
A wrapper function for dealing with different versions of PetscOptionsSetValue.
void addExecutor(const std::string &type, const std::string &name, const InputParameters ¶ms)
const unsigned int _multiapp_level
Level of multiapp, the master is level 0. This used by the Console to indent output.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual std::shared_ptr< const DisplacedProblem > getDisplacedProblem() const
RelationshipManagers are used for describing what kinds of non-local resources are needed for an obje...
PetscErrorCode petscSetupOutput(CommandLine *cmd_line)
void add_command_line_name(const std::string &name)
Moose::Builder _builder
Builder for building app related parser tree.
const std::shared_ptr< MooseMesh > & getDisplacedMesh() const
Registry of capabilities that checks capability requirements.
static Moose::Capability & addStringCapability(const std::string_view capability, const std::string_view value, const std::string_view doc)
Register a string capability.
std::string RestartableDataMapName
std::set< std::shared_ptr< RelationshipManager > > _relationship_managers
The relationship managers that have been added.
OutputWarehouse _output_warehouse
OutputWarehouse object for this App.
std::string _output_file_base
The output file basename.
std::streambuf * _output_buffer_cache
Cache output buffer so the language server can turn it off then back on.
bool _restored_initial_backup_mesh
Whether mesh topology has been restored from the initial Backup object.
static void addAppParam(InputParameters ¶ms)
bool _cpu_profiling
CPU profiling.
T & set(const std::string &)
if(!dmm->_nl) SETERRQ(PETSC_COMM_WORLD
Concrete definition of a parameter value for a specified type.
void build()
Builds all auto-buildable tasks.
void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Register objects that are in MOOSE.
virtual void runInputFile()
Actually build everything in the input file.
bool setColorConsole(bool use_color, bool force=false)
Turns color escape sequences on/off for info written to stdout.
virtual std::string header() const
Returns a string to be printed at the beginning of a simulation.
void mooseWarning(Args &&... args) const
Emits a warning prefixed with object name and type.
IntRange< T > make_range(T beg, T end)
Holding syntax for parsing input files.
virtual MooseMesh & mesh() override
class infix_ostream_iterator if void
std::unordered_set< std::string > DataNames
static Moose::Capability & addBoolCapability(const std::string_view capability, const bool value, const std::string_view doc)
Register a boolean capability.
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
static const std::string MESH_META_DATA_SUFFIX
SolverSystem & getSolverSystem(unsigned int sys_num)
Get non-constant reference to a solver system.
void executeAllActions()
This method loops over all actions in the warehouse and executes them.
std::unique_ptr< InputParameterWarehouse > _input_parameter_warehouse
Input parameter storage structure; unique_ptr so we can control its destruction order.
std::string getCurrentWorkingDir()
const std::vector< std::string > & getInputFileNames() const
Tracks whether the object is on the displaced mesh.
std::list< std::string > getFilesInDirs(const std::list< std::string > &directory_list, const bool files_only)
InputStreams clear()
Clears the contents of the reader (header stream, data stream, header)
void mooseDeprecatedNoTrace(Args &&... args)
Emit a deprecated code/feature message with the given stringified, concatenated args.
std::unique_ptr< Backup > finalizeRestore()
Finalizes (closes) the restoration process done in restore().
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
const ConsoleStream _console
An instance of helper class to write streams to the Console objects.
bool appendingMeshGenerators() const
Whether or not mesh generators are currently being appended (append_mesh_generator task) ...
static const std::string allow_data_driven_param
The name of the boolean parameter on the MooseApp that will enable data driven generation.
std::vector< std::pair< std::string, std::string > > mesh_files
Pairs of checkpoint-relative entry names and binary payloads.
void restore(const DataNames &filter_names={})
Restores the restartable data.
void dynamicAllRegistration(const std::string &app_name, Factory *factory, ActionFactory *action_factory, Syntax *syntax, std::string library_path, const std::string &library_name)
Thes methods are called to register applications or objects on demand.
static Moose::Capability & addCapabilityInternal(const std::string_view capability, const Moose::Capability::Value &value, const std::string_view doc)
Internal method for adding a capability.
const DataNames & getRecoverableData() const
Return a reference to the recoverable data object.
void setDeclared(const SetDeclaredKey)
Sets that this restartable value has been declared.
std::vector< std::string > split(const std::string &str, const std::string &delimiter, std::size_t max_count)
const std::shared_ptr< libMesh::Parallel::Communicator > _comm
The MPI communicator this App is going to use.
std::string getPrintableVersion() const
Non-virtual method for printing out the version string in a consistent format.
std::shared_ptr< mfem::Device > _mfem_device
The MFEM Device object.
std::vector< const T * > getActions()
Retrieve all actions in a specific type ordered by their names.
bool pathExists(const std::string &path)
void createMinimalApp()
Method for creating the minimum required actions for an application (no input file) ...
void setExitCode(const int exit_code)
Sets the exit code that the application will exit with.
Exception to be thrown whenever we have _throw_on_error set and a mooseError() is emitted...
bool isRecovering() const
Whether or not this is a "recover" calculation.
bool checkFileReadable(const std::string &filename, bool check_line_endings, bool throw_on_unreadable, bool check_for_git_lfs_pointer)
DataNames _recoverable_data_names
Data names that will only be read from the restart file during RECOVERY.
Executor * getExecutor() const
The PerfGraph will hold the master list of all registered performance segments and the head PerfNode...
bool copyInputs()
Handles the copy_inputs input parameter logic: Checks to see whether the passed argument is valid (a ...
bool _throw_on_error
Variable to turn on exceptions during mooseError(), should only be used within MOOSE unit tests or wh...
bool isParamSetByUser(const std::string &name) const
Test if the supplied parameter is set by a user, as opposed to not set or set to default.
void clear()
This method deletes all of the Actions in the warehouse.
A scope guard that guarantees that whatever happens between when it gets created and when it is destr...
void disableCheckUnusedFlag()
Removes warnings and error checks for unrecognized variables in the input file.
bool _split_mesh
Whether or not we are performing a split mesh operation (–split-mesh)
void ErrorVector unsigned int
bool hasInitialBackupMesh() const
Whether this app has an initial Backup object with mesh checkpoint entries.
const bool _use_executor
Indicates whether we are operating in the new/experimental executor mode instead of using the legacy ...
const Elem & get(const ElemType type_in)
Abstract definition of a RestartableData value.
bool prepare(const MeshBase *mesh_to_clone)
Calls prepare_for_use() if the underlying MeshBase object isn't prepared, then communicates various b...
Class for parsing input files.
void requestCitations()
Handles the –citations command-line option: registers with PETSc the BibTeX entries that should be c...
Meta-action for creating common output object parameters This action serves two purpose, first it adds common output object parameters.
OutputWarehouse & getOutputWarehouse()
Get the OutputWarehouse objects.
std::string getExecutableName()
Gets the name of the running executable on Mac OS X and linux.
std::string appNameToLibName(const std::string &app_name) const
Converts an application name to a library name: Examples: AnimalApp -> libanimal-oprof.la (assuming METHOD=oprof) ThreeWordAnimalApp -> libthree_word_animal-dbg.la (assuming METHOD=dbg)
static InputParameters validParams()
static char addKnownLabel(const std::string &label)
addKnownLabel whitelists a label as valid for purposes of the checkLabels function.
void setStartTime(Real time)
Set the starting time for the simulation.
std::shared_ptr< Executor > _executor
Pointer to the Executor of this run.
The Executor class directs the execution flow of simulations.
void add_ghosting_functor(GhostingFunctor &ghosting_functor)
std::string findTestRoot()
void errorCheck()
Runs post-initialization error checking that cannot be run correctly unless the simulation has been f...
std::set< std::string > getLoadedLibraryPaths() const
Return the paths of loaded libraries.
std::string _early_exit_param
Indicates if simulation is ready to exit, and keeps track of which param caused it to exit...
static bool isAvailable(const std::filesystem::path &folder_base)
void dynamicAppRegistration(const std::string &app_name, std::string library_path, const std::string &library_name, bool lib_load_deps)
std::unique_ptr< Backup > *const _initial_backup
The backup for use in initial setup; this will get set from the _initial_backup input parameter that ...