fix bug in procmap Comm::MULTIPLE import

This commit is contained in:
Axel Kohlmeyer
2018-05-10 00:02:12 -04:00
parent 71fce2e413
commit b6a8168e3f
2 changed files with 3 additions and 1 deletions

View File

@ -133,12 +133,13 @@ class Comm : protected Pointers {
int otherflag; // 1 if this partition dependent on another
int other_style; // style of dependency
enum{MULTIPLE};
int other_procgrid[3]; // proc layout of another partition
int other_coregrid[3]; // core layout of another partition
int ncores; // # of cores per node
int coregrid[3]; // 3d grid of cores within a node
int user_coregrid[3]; // user request for cores in each dim
public:
enum{MULTIPLE};
};
}

View File

@ -17,6 +17,7 @@
#include "procmap.h"
#include "universe.h"
#include "comm.h"
#include "domain.h"
#include "math_extra.h"
#include "memory.h"