From bda8a1580b8a16f04cfc2bc4fbac81f10b446482 Mon Sep 17 00:00:00 2001 From: dpugmire Date: Mon, 18 May 2020 16:44:12 -0400 Subject: [PATCH] change comments as well. --- examples/multi_backend/MultiDeviceGradient.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/multi_backend/MultiDeviceGradient.hxx b/examples/multi_backend/MultiDeviceGradient.hxx index 39a43b624..36a592f3d 100644 --- a/examples/multi_backend/MultiDeviceGradient.hxx +++ b/examples/multi_backend/MultiDeviceGradient.hxx @@ -64,17 +64,17 @@ void process_partition_openMP(RuntimeTaskQueue& queue) { //Step 1. Set the device adapter to this thread to TBB. //This makes sure that any vtkm::filters used by our - //task operate only on TBB. The "global" thread tracker + //task operate only on openMP. The "global" thread tracker //is actually thread-local, so we can use that. // vtkm::cont::GetRuntimeDeviceTracker().ForceDevice(vtkm::cont::DeviceAdapterTagOpenMP{}); while (queue.hasTasks()) { - //Step 2. Get the task to run on TBB + //Step 2. Get the task to run on openMP auto task = queue.pop(); - //Step 3. Run the task on TBB. We check the validity + //Step 3. Run the task on openMP. We check the validity //of the task since we could be given an empty task //when the queue is empty and we are shutting down if (task != nullptr)