Add binding output to test
This commit was SVN r25955.
Этот коммит содержится в:
родитель
6d8589838e
Коммит
10f94efbda
@ -8,15 +8,23 @@
|
||||
#include <stdio.h>
|
||||
#include "mpi.h"
|
||||
|
||||
#include "opal/mca/hwloc/hwloc.h"
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int rank, size;
|
||||
hwloc_cpuset_t cpus;
|
||||
char *bindings;
|
||||
|
||||
MPI_Init(&argc, &argv);
|
||||
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
||||
MPI_Comm_size(MPI_COMM_WORLD, &size);
|
||||
|
||||
printf("Hello, World, I am %d of %d\n", rank, size);
|
||||
cpus = hwloc_bitmap_alloc();
|
||||
hwloc_get_cpubind(opal_hwloc_topology, cpus, HWLOC_CPUBIND_PROCESS);
|
||||
hwloc_bitmap_list_asprintf(&bindings, cpus);
|
||||
|
||||
printf("Hello, World, I am %d of %d: bitmap %s\n", rank, size, bindings);
|
||||
|
||||
MPI_Finalize();
|
||||
return 0;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user