Beispiel #1
0
 def inc_files(self):
     return util.glob_list([self.prefix, 'include'],
                           ['mpi*.h', 'mpi*.mod', 'opa*.h', 'primitives'])
Beispiel #2
0
 def libexec_files(self):
     return util.glob_list([self.prefix, 'libexec'],
                           ['osu-micro-benchmarks'])
Beispiel #3
0
 def lib_files(self):
     return util.glob_list([self.prefix, 'lib'],
                           ['lib*mpi*.*', 'lib*mpl*.*', 'libopa.*'])
Beispiel #4
0
 def bin_files(self):
     # MPICH-specific files, which would not conflict with
     # other MPI implementations.
     mpich_files = util.glob_list([self.prefix, 'bin'],
                                  ['hydra_*', 'parkill'])
     return mpich_files
Beispiel #5
0
 def inc_files(self):
     return util.glob_list([self.prefix, 'include'], ['mpi*.h', 'openmpi'])
Beispiel #6
0
 def lib_files(self):
     return util.glob_list([self.prefix, 'bin'], [
         'libmpi*', 'libmca*', 'libompi*', 'libopen-pal*', 'libopen-rte*',
         'openmpi', 'pkgconfig'
     ])
Beispiel #7
0
 def bin_files(self):
     return util.glob_list([self.prefix, 'bin'],
                           ['ompi-*', 'ompi_*', 'orte*', 'opal_'])