Debug: Silence excessive prints

This commit is contained in:
2025-12-02 16:22:23 -04:00
parent 5dffbd0c91
commit dc5587bfcc
2 changed files with 4 additions and 0 deletions
@@ -498,6 +498,7 @@ public:
std::cerr << __func__ << ": Failed to compact and collate frame" << std::endl;
} else
{
#if 0
// Print execution durations
auto assemblyDuration = pcloudProducer.ioUringAssemblyEngine.getAssemblyDuration();
auto compactDuration = pcloudProducer.openClCollatingAndMeshingEngine.getCompactKernelDuration();
@@ -505,6 +506,7 @@ public:
std::cout << __func__ << ": Successfully compacted and collated frame: assemblyDuration=" << assemblyDuration.count()
<< "ms, compactKernelDuration=" << compactDuration.count()
<< "ms, collateKernelDuration=" << collateDuration.count() << "ms" << std::endl;
#endif
}
callOriginalCallback();