Change mpi and taskfarm flags to use -- convention

这个提交包含在:
nmannall
2024-08-16 15:49:20 +01:00
父节点 93dadd9f1e
当前提交 aef7737299
共有 2 个文件被更改,包括 4 次插入3 次删除

查看文件

@@ -451,7 +451,7 @@ class GprMaxMPIRegressionTest(GprMaxRegressionTest):
def configure_test_run(self):
"""Add MPI specific commandline arguments"""
self.num_tasks = int(prod(self.mpi_layout))
self.extra_executable_opts = ["-mpi", *map(str, self.mpi_layout)]
self.extra_executable_opts = ["--mpi", *map(str, self.mpi_layout)]
super().configure_test_run()
def _get_variant(self) -> str: