32int main(
int argc,
char* argv[])
35 "Partition a mesh for parallel computing."
36 "The tasks of this tool are in twofold:\n"
37 "1. Convert mesh file to the input file of the partitioning tool,\n"
38 "2. Partition a mesh using the partitioning tool,\n"
39 "\tcreate the mesh data of each partition,\n"
40 "\trenumber the node indices of each partition,\n"
41 "\tand output the results for parallel computing.\n"
42 "Note: If this tool is installed as a system command,\n"
43 "\tthe command must be run with its full path.\n\n"
44 "OpenGeoSys-6 software, version " +
47 "Copyright (c) 2012-2024, OpenGeoSys Community "
48 "(http://www.opengeosys.org)",
50 TCLAP::ValueArg<std::string> mesh_input(
51 "i",
"mesh-input-file",
52 "the name of the file containing the input mesh",
true,
"",
53 "file name of input mesh");
56 TCLAP::ValueArg<std::string> metis_mesh_input(
57 "x",
"metis-mesh-input-file",
58 "base name (without .mesh extension) of the file containing the metis "
61 "base name (without .mesh extension) of the file containing the metis "
63 cmd.add(metis_mesh_input);
65 TCLAP::ValueArg<std::string> output_directory_arg(
66 "o",
"output",
"directory name for the output files",
false,
"",
68 cmd.add(output_directory_arg);
70 TCLAP::ValueArg<int> nparts(
"n",
"np",
"the number of partitions",
false, 2,
74 TCLAP::SwitchArg ogs2metis_flag(
76 "Indicator to convert the ogs mesh file to METIS input file", cmd,
79 TCLAP::SwitchArg exe_metis_flag(
80 "m",
"exe_metis",
"Call mpmetis inside the programme via system().",
82 cmd.add(exe_metis_flag);
84 TCLAP::ValueArg<std::string> log_level_arg(
86 "the verbosity of logging messages: none, error, warn, info, debug, "
95 cmd.add(log_level_arg);
99 TCLAP::UnlabeledMultiArg<std::string> other_meshes_filenames_arg(
100 "other_meshes_filenames",
"mesh file names.",
false,
"file");
101 cmd.add(other_meshes_filenames_arg);
103 cmd.parse(argc, argv);
106 MPI_Init(&argc, &argv);
110 spdlog::set_pattern(
"%^%l:%$ %v");
111 spdlog::set_error_handler(
112 [](
const std::string& msg)
114 std::cerr <<
"spdlog error: " << msg << std::endl;
115 OGS_FATAL(
"spdlog logger error occurred.");
118 const auto output_directory = output_directory_arg.getValue();
126 const std::string input_file_name_wo_extension =
128 std::unique_ptr<MeshLib::Mesh> mesh_ptr(
130 INFO(
"Mesh '{:s}' read: {:d} nodes, {:d} elements.",
132 mesh_ptr->getNumberOfNodes(),
133 mesh_ptr->getNumberOfElements());
139 if (ogs2metis_flag.getValue())
141 INFO(
"Write the mesh into METIS input file.");
143 output_file_name_wo_extension +
".mesh");
144 INFO(
"Total runtime: {:g} s.", run_timer.
elapsed());
145 INFO(
"Total CPU time: {:g} s.", CPU_timer.
elapsed());
154 nparts.getValue(), std::move(mesh_ptr));
156 const int num_partitions = nparts.getValue();
158 if (num_partitions < 1)
160 OGS_FATAL(
"Number of partitions must be positive.");
163 if (num_partitions == 1)
166 "Partitioning the mesh into one domain is unnecessary because OGS "
167 "reads vtu mesh data directly when called with 'mpirun bin/ogs "
171 auto metis_mesh = output_file_name_wo_extension;
172 if (metis_mesh_input.getValue() !=
"")
174 metis_mesh = metis_mesh_input.getValue();
178 if (exe_metis_flag.getValue())
180 INFO(
"METIS is running ...");
181 const std::string exe_name = argv[0];
183 INFO(
"Path to mpmetis is: \n\t{:s}", exe_path);
185 const std::string mpmetis_com =
187 metis_mesh +
".mesh" +
"\" " + std::to_string(nparts.getValue());
189 INFO(
"Running: {:s}", mpmetis_com);
190 const int status = system(mpmetis_com.c_str());
193 INFO(
"Failed in system calling.");
194 INFO(
"Return value of system call {:d} ", status);
206 if (exe_metis_flag.getValue())
211 INFO(
"Partitioning the mesh in the node wise way ...");
214 INFO(
"Partitioning other meshes according to the main mesh partitions.");
215 for (
auto const& filename : other_meshes_filenames_arg.getValue())
217 std::unique_ptr<MeshLib::Mesh> mesh(
219 INFO(
"Mesh '{:s}' from file '{:s}' read: {:d} nodes, {:d} elements.",
220 mesh->getName(), filename, mesh->getNumberOfNodes(),
221 mesh->getNumberOfElements());
223 std::string
const other_mesh_output_file_name_wo_extension =
231 partitioned_properties);
234 other_mesh_output_file_name_wo_extension, partitions,
235 partitioned_properties);
239 io_run_timer.
start();
240 mesh_partitioner.
write(output_file_name_wo_extension);
241 INFO(
"Writing the partitions data into binary files took {:g} s",
244 INFO(
"Total runtime: {:g} s.", run_timer.
elapsed());
245 INFO(
"Total CPU time: {:g} s.", CPU_timer.
elapsed());