ProcessDist.h 426 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
#ifndef MALLEABILITY_SPAWN_PROCESS_DIST_H
#define MALLEABILITY_SPAWN_PROCESS_DIST_H

#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
#include <string.h>
#include "../malleabilityStates.h"
#include "../malleabilityDataStructures.h"

11
int physical_struct_create(int target_qty, int already_created, int info_type, struct physical_dist *dist);
12
13
14
void processes_dist(struct physical_dist dist, MPI_Info *info_spawn);

#endif