Skip to content

Commit eb3305e

Browse files
committed
remove timing
1 parent 998d9cc commit eb3305e

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

SU2_CFD/src/drivers/CDriver.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,9 @@ CDriver::CDriver(char* confFile, unsigned short val_nZone, SU2_Comm MPICommunica
234234
if (nZone > 1) {
235235
if (rank == MASTER_NODE)
236236
cout << endl <<"------------------- Multizone Interface Preprocessing -------------------" << endl;
237-
double stime = SU2_MPI::Wtime();
237+
238238
Interface_Preprocessing(config_container, solver_container, geometry_container,
239239
interface_types, interface_container, interpolator_container);
240-
std::cout << "duration Interface_Preprocessing: " << stime << "..." << SU2_MPI::Wtime() <<" = "<<SU2_MPI::Wtime() - stime << " s\n";
241240
}
242241

243242
if (fsi) {
@@ -2773,9 +2772,7 @@ void CFluidDriver::Run() {
27732772
for (iZone = 0; iZone < nZone; iZone++) {
27742773
for (jZone = 0; jZone < nZone; jZone++)
27752774
if(jZone != iZone && interpolator_container[iZone][jZone] != nullptr)
2776-
{ double stime = SU2_MPI::Wtime();
27772775
interpolator_container[iZone][jZone]->SetTransferCoeff(config_container);
2778-
std::cout <<"duration SetTransferCoeff in CDriver.cpp: " << stime << "..." << SU2_MPI::Wtime()<<" = "<< SU2_MPI::Wtime()-stime <<" s\n"; }
27792776
}
27802777
}
27812778

SU2_CFD/src/drivers/CMultizoneDriver.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,7 @@ void CMultizoneDriver::Preprocess(unsigned long TimeIter) {
268268
for (iZone = 0; iZone < nZone; iZone++) {
269269
for (unsigned short jZone = 0; jZone < nZone; jZone++){
270270
if(jZone != iZone && interpolator_container[iZone][jZone] != nullptr && prefixed_motion[iZone])
271-
{ double stime = SU2_MPI::Wtime();
272271
interpolator_container[iZone][jZone]->SetTransferCoeff(config_container);
273-
std::cout <<"duration SetTransferCoeff in CMultizoneDriver.cpp: " << stime << "..." << SU2_MPI::Wtime()<<" = "<< SU2_MPI::Wtime()-stime <<" s\n"; }
274-
275272
}
276273
}
277274
}

0 commit comments

Comments
 (0)