Skip to content
Snippets Groups Projects
Commit 982361c5 authored by Henrik Asmuth's avatar Henrik Asmuth
Browse files

remove debugging couts

parent a886e8e4
No related branches found
No related tags found
1 merge request!170Kernel templetization and efficiency improvements
......@@ -41,8 +41,6 @@ void CumulantK17Almighty<turbulenceModel>::runOnIndices( const unsigned int *ind
{
cudaStream_t stream = para->getStreamManager()->getStream(streamIndex);
// std::cout << std::endl << "Run On indices: "<< (int)streamIndex << " " << stream << std::endl << std::endl ;
switch (collisionTemplate)
{
case CollisionTemplate::Default:
......
......@@ -42,10 +42,6 @@ void CudaStreamManager::launchStreams()
{
for (auto &stream : cudaStreams)
cudaStreamCreate(&stream.second);
std::cout << std::endl << "Stream default "<< (int)CudaStreamIndex::Legacy << " " << cudaStreams.find(CudaStreamIndex::Legacy)->second << std::endl
<< std::endl << "Stream bulk "<< (int)CudaStreamIndex::Bulk << " " << cudaStreams.find(CudaStreamIndex::Bulk)->second << std::endl
<< "Stream border " << (int)CudaStreamIndex::Border << " "<< cudaStreams.find(CudaStreamIndex::Border)->second << std::endl << std::endl ;
}
void CudaStreamManager::terminateStreams()
......
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