From a11d9ad108055e4311b81158c2bfcbb1db8acf35 Mon Sep 17 00:00:00 2001 From: Abhishek Yenpure Date: Thu, 23 Sep 2021 10:22:33 -0700 Subject: [PATCH] removing print statements --- vtkm/worklet/particleadvection/Field.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vtkm/worklet/particleadvection/Field.h b/vtkm/worklet/particleadvection/Field.h index 8ac08510b..d93358966 100644 --- a/vtkm/worklet/particleadvection/Field.h +++ b/vtkm/worklet/particleadvection/Field.h @@ -96,8 +96,6 @@ public: VTKM_EXEC void GetValue(const vtkm::Id cellId, vtkm::VecVariable& value) const { - printf("Getting cell velocity"); - VTKM_ASSERT(this->Assoc == Association::CELL_SET); auto electric = this->ElectricValues.Get(cellId); @@ -111,8 +109,6 @@ public: const vtkm::UInt8 cellShape, vtkm::VecVariable& value) const { - printf("Getting point velocity"); - VTKM_ASSERT(this->Assoc == Association::POINTS); vtkm::Vec3f electricInterp, magneticInterp; @@ -149,7 +145,6 @@ public: : FieldValues(fieldValues) , Assoc(vtkm::cont::Field::Association::POINTS) { - std::cout << "Here here 1" << std::endl; } VTKM_CONT @@ -157,7 +152,6 @@ public: : FieldValues(fieldValues) , Assoc(assoc) { - std::cout << "Here here 2" << std::endl; if (assoc == Association::ANY || assoc == Association::WHOLE_MESH) throw("Unsupported field association"); }