We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36cbfb0 commit 9814ff7Copy full SHA for 9814ff7
scripts/run_tests.py
@@ -138,10 +138,6 @@ def run_processes(self, additional_mpi_args):
138
[self.mpi_exec]
139
+ shlex.split(additional_mpi_args)
140
+ [
141
- "-x",
142
- "PPC_NUM_THREADS",
143
144
- "OMP_NUM_THREADS",
145
"-np",
146
ppc_num_proc,
147
]
@@ -156,15 +152,7 @@ def run_processes(self, additional_mpi_args):
156
152
157
153
def run_performance(self):
158
154
if not self.__ppc_env.get("PPC_ASAN_RUN"):
159
- mpi_running = [
160
- self.mpi_exec,
161
162
163
164
165
- "-np",
166
- self.__ppc_num_proc,
167
- ]
155
+ mpi_running = [self.mpi_exec, "-np", self.__ppc_num_proc]
168
for task_type in ["all", "mpi"]:
169
self.__run_exec(
170
mpi_running
0 commit comments