Skip to content
Snippets Groups Projects
Commit eb92a168 authored by Anna Wellmann's avatar Anna Wellmann Committed by Anna Wellmann
Browse files

Prevent user from enabling streams on a single gpu

parent 38789743
No related branches found
No related tags found
1 merge request!104Add Communication Hiding to GPU version
......@@ -119,7 +119,12 @@ void multipleLevel(const std::string& configPath)
bool useGridGenerator = true;
bool useStreams = true;
bool useLevels = true;
para->useReducedCommunicationAfterFtoC = true;
para->useReducedCommunicationAfterFtoC = false;
if (para->getNumprocs() == 1) {
useStreams = false;
para->useReducedCommunicationAfterFtoC = false;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment