From 6c98cbc6e4fa95a03e733ed2ef07d56ae7f86701 Mon Sep 17 00:00:00 2001 From: Allison Vacanti Date: Sun, 17 May 2020 12:53:14 -0400 Subject: [PATCH] Add missing Algorithm::Synchronize() in timer test. --- vtkm/cont/testing/TestingDeviceAdapter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vtkm/cont/testing/TestingDeviceAdapter.h b/vtkm/cont/testing/TestingDeviceAdapter.h index b50355fb8..a50831d1e 100644 --- a/vtkm/cont/testing/TestingDeviceAdapter.h +++ b/vtkm/cont/testing/TestingDeviceAdapter.h @@ -595,6 +595,7 @@ private: { vtkm::cont::Timer timer{ DeviceAdapterTag() }; timer.Start(); + Algorithm::Synchronize(); std::cout << "Timer started. Sleeping..." << std::endl;