Commit 8cfba32f5dbd60d7e3a449e249ff1972ca5eff14

Authored by David Mayerich
1 parent 8eb07ab6

modified profiling output

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
@@ -441,14 +441,14 @@ public: @@ -441,14 +441,14 @@ public:
441 if(PROGRESS) progress = (double)( c + 1 ) / (batches) * 100; 441 if(PROGRESS) progress = (double)( c + 1 ) / (batches) * 100;
442 } 442 }
443 443
444 - std::cout<<"BSQ->BIL reads: "<<(double)in_time / (1000 * 60)<<" min"<<std::endl;  
445 - std::cout<<"BSQ->BIL calculations: "<<(double)calc_time / (1000 * 60)<<" min"<<std::endl;  
446 - std::cout<<"BSQ->BIL writes: "<<(double)out_time / (1000 * 60)<<" min"<<std::endl;  
447 -  
448 free(ptrIn); 444 free(ptrIn);
449 free(ptrOut); 445 free(ptrOut);
450 target.close(); 446 target.close();
451 447
  448 + std::cout<<"BSQ->BIL reads: "<<(double)in_time / (1000 * 60)<<" min"<<std::endl;
  449 + std::cout<<"BSQ->BIL calculations: "<<(double)calc_time / (1000 * 60)<<" min"<<std::endl;
  450 + std::cout<<"BSQ->BIL writes: "<<(double)out_time / (1000 * 60)<<" min"<<std::endl;
  451 +
452 return true; 452 return true;
453 } 453 }
454 454