Peano
Loading...
Searching...
No Matches
parallel.h
Go to the documentation of this file.
1// This file is part of the Peano project. For conditions of distribution and
2// use, please see the copyright notice at www.peano-framework.org
3#pragma once
4
5#include <string>
6
7namespace peano4 {
15 namespace parallel {
33 int getTaskType(const std::string& className);
34
35 std::string getClassNameOfType(int taskType);
36 }
37}
The parallel namespace is Peano's core abstracts from both MPI and multicore parallelisation.
std::string getClassNameOfType(int taskType)
Definition parallel.cpp:29
int getTaskType(const std::string &className)
Get unique number (id) for task.
Definition parallel.cpp:13