Skip to content
Snippets Groups Projects
Commit f23b2b50 authored by Martin Bauer's avatar Martin Bauer
Browse files

Removed debug code from UniformGPUScheme

parent fcda3cad
Branches
Tags
No related merge requests found
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
#include "cuda/communication/CustomMemoryBuffer.h" #include "cuda/communication/CustomMemoryBuffer.h"
#include "cuda/ParallelStreams.h" #include "cuda/ParallelStreams.h"
#include <chrono>
#include <thread> #include <thread>
namespace walberla { namespace walberla {
......
...@@ -139,8 +139,6 @@ UniformGPUScheme<Stencil>::UniformGPUScheme( weak_ptr_wrapper <StructuredBlockFo ...@@ -139,8 +139,6 @@ UniformGPUScheme<Stencil>::UniformGPUScheme( weak_ptr_wrapper <StructuredBlockFo
auto parallelSection = parallelSectionManager_.parallelSection( stream ); auto parallelSection = parallelSectionManager_.parallelSection( stream );
for( auto recvInfo = bufferSystemCPU_.begin(); recvInfo != bufferSystemCPU_.end(); ++recvInfo ) for( auto recvInfo = bufferSystemCPU_.begin(); recvInfo != bufferSystemCPU_.end(); ++recvInfo )
{ {
using namespace std::chrono_literals;
std::this_thread::sleep_for( 1ms );
auto &gpuBuffer = bufferSystemGPU_.sendBuffer( recvInfo.rank()); auto &gpuBuffer = bufferSystemGPU_.sendBuffer( recvInfo.rank());
gpuBuffer.clear(); gpuBuffer.clear();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment