Skip to content
Snippets Groups Projects

Coll local concurrency fixes

1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -9,11 +9,11 @@ from Infrastructure.TemplateFactory import get_collective_template
@@ -9,11 +9,11 @@ from Infrastructure.TemplateFactory import get_collective_template
from Infrastructure.Variables import *
from Infrastructure.Variables import *
class InvalidRankErrorColl(ErrorGenerator):
class LocalConcurrencyErrorColl(ErrorGenerator):
nbfunc_to_use = ["mpi_iallreduce", "mpi_ialltoall", "mpi_ibcast", "mpi_ireduce", "mpi_iscatter", "mpi_igather",
"mpi_iscan"]
def __init__(self):
def __init__(self):
 
self.nbfunc_to_use = ["mpi_iallreduce", "mpi_ialltoall", "mpi_ibcast", "mpi_ireduce", "mpi_iscatter", "mpi_igather",
 
"mpi_iscan"]
pass
pass
def get_feature(self):
def get_feature(self):
@@ -33,5 +33,5 @@ class InvalidRankErrorColl(ErrorGenerator):
@@ -33,5 +33,5 @@ class InvalidRankErrorColl(ErrorGenerator):
yield tm
yield tm
if generate_level >= BASIC_TEST_LEVEL:
if generate_level <= BASIC_TEST_LEVEL:
return
return
Loading