Skip to content

Commit 1d7e130

Browse files
committed
commenting out this print as well
1 parent 471c00b commit 1d7e130

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

include/taskr/runtime.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -311,15 +311,15 @@ class Runtime
311311
size_t taskWorkerId = 0;
312312
for (size_t computeResourceId = _serviceWorkerCount; computeResourceId < _computeResources.size(); computeResourceId++)
313313
{
314-
// Getting up-casted pointer for the processing unit
315-
auto c = dynamic_pointer_cast<HiCR::backend::hwloc::ComputeResource>(_computeResources[computeResourceId]);
314+
// // Getting up-casted pointer for the processing unit
315+
// auto c = dynamic_pointer_cast<HiCR::backend::hwloc::ComputeResource>(_computeResources[computeResourceId]);
316316

317-
// Checking whether the execution unit passed is compatible with this backend
318-
if (c == nullptr) HICR_THROW_LOGIC("The passed compute resource is not supported by this processing unit type\n");
317+
// // Checking whether the execution unit passed is compatible with this backend
318+
// if (c == nullptr) HICR_THROW_LOGIC("The passed compute resource is not supported by this processing unit type\n");
319319

320-
// Getting the logical processor ID of the compute resource
321-
auto pid = c->getProcessorId();
322-
printf("activating PU with PID: %d\n", pid);
320+
// // Getting the logical processor ID of the compute resource
321+
// auto pid = c->getProcessorId();
322+
// printf("activating PU with PID: %d\n", pid);
323323

324324
// Creating new task worker
325325
auto taskWorker = std::make_shared<taskr::Worker>(

0 commit comments

Comments
 (0)