remove print

This commit is contained in:
kradchen
2023-10-26 15:28:12 +08:00
parent f744f7bb4e
commit 9beffc39c7

View File

@@ -1726,11 +1726,11 @@ void SAFTHandler::processAScans(
auto stopPerformCoreReconstruction = std::chrono::steady_clock::now(); auto stopPerformCoreReconstruction = std::chrono::steady_clock::now();
diff_time = std::chrono::duration_cast<std::chrono::microseconds>(stopPerformCoreReconstruction - startPerformCoreReconstruction).count(); // total duration in µs diff_time = std::chrono::duration_cast<std::chrono::microseconds>(stopPerformCoreReconstruction - startPerformCoreReconstruction).count(); // total duration in µs
// #ifdef debug_OutputStepsPerformance #ifdef debug_OutputStepsPerformance
printf ("########################################################################\n"); printf ("########################################################################\n");
printf ("### GPU (%18s: HW-ID %i, Idx %i) ### PerformCoreReconstruction = duration: %8.0f µs \n", deviceProperties[deviceId].name, deviceId, deviceIndex, diff_time); printf ("### GPU (%18s: HW-ID %i, Idx %i) ### PerformCoreReconstruction = duration: %8.0f µs \n", deviceProperties[deviceId].name, deviceId, deviceIndex, diff_time);
printf ("########################################################################\n"); printf ("########################################################################\n");
// #endif #endif
duration = (ullong)diff_time; duration = (ullong)diff_time;