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

Fix console output in UpdateGrid

parent 4722766b
No related branches found
No related tags found
1 merge request!104Add Communication Hiding to GPU version
......@@ -1470,7 +1470,7 @@ void UpdateGrid27::chooseFunctionForCollisionAndExchange(Parameter *para)
std::cout << "Cuda Streams can only be used with kernels which run using fluidNodesIndices." << std::endl;
} else if (para->getUseStreams() && para->getNumprocs() <= 1) {
std::cout << "Cuda Streams can only be with multiple MPI processes." << std::endl;
std::cout << "Cuda Streams can only be used with multiple MPI processes." << std::endl;
} else if (!para->getUseStreams() && para->getKernelNeedsFluidNodeIndicesToRun()) {
this->collisionAndExchange = [](Parameter *para, std::vector<std::shared_ptr<PorousMedia>> &pm, int level,
......
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