From 0b76f44c8d462386b1a167d18fccd7aef6a40595 Mon Sep 17 00:00:00 2001 From: Abhishek Yenpure Date: Tue, 1 Nov 2022 18:09:21 -0700 Subject: [PATCH] Removing cout from device code --- vtkm/filter/flow/worklet/XGCPoincare.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/vtkm/filter/flow/worklet/XGCPoincare.h b/vtkm/filter/flow/worklet/XGCPoincare.h index ab738e8b0..35a8c0e98 100644 --- a/vtkm/filter/flow/worklet/XGCPoincare.h +++ b/vtkm/filter/flow/worklet/XGCPoincare.h @@ -92,7 +92,6 @@ public: //std::cout< numRevs0) { - std::cout << "Puncture!!! : " << newParticle.Pos << std::endl; auto R = newParticle.Pos[0]; auto Z = newParticle.Pos[2]; auto theta = vtkm::ATan2(Z - this->Params.eq_axis_z, R - this->Params.eq_axis_r); @@ -105,8 +104,6 @@ public: HighOrderB(ptRPZ, metadata, this->Params, this->Coeff_1D, this->Coeff_2D); vtkm::Id loc = (index * this->MaxPunctures) + newParticle.NumPunctures; - std::cout << "Puncture data : " << R << " " << Z << " " << theta << " " - << (metadata.Psi / this->Params.eq_x_psi) << " " << index << std::endl; this->Validity.Set(loc, 1); this->OutputR.Set(loc, R); this->OutputZ.Set(loc, Z);