#include <string>
#include "emfft.h"
#include "log.h"
#include <iostream>
#include "util.h"
Include dependency graph for emfft-debug.cpp:
Go to the source code of this file.
Functions | |
int | get_rank (int ny, int nz) |
|
Definition at line 60 of file emfft-debug.cpp. References ny. 00061 { 00062 int rank = 3; 00063 if (ny == 1) { 00064 rank = 1; 00065 } 00066 else if (nz == 1) { 00067 rank = 2; 00068 } 00069 return rank; 00070 }
|