Lines Matching refs:speed
252 TSMonitorWallClockTimeContext speed; in TSMonitorWallClockTimeSetUp() local
255 PetscCall(PetscNew(&speed)); in TSMonitorWallClockTimeSetUp()
256 speed->time_start = PETSC_DECIDE; in TSMonitorWallClockTimeSetUp()
258 vf->data = speed; in TSMonitorWallClockTimeSetUp()
288 TSMonitorWallClockTimeContext speed = (TSMonitorWallClockTimeContext)vf->data; in TSMonitorWallClockTime() local
296 if (speed->time_start == PETSC_DECIDE) { in TSMonitorWallClockTime()
297 speed->time_start = now; in TSMonitorWallClockTime()
298 speed->time_last = now; in TSMonitorWallClockTime()
306 …step, (double)ts->time_step, (double)ptime, ts->steprollback ? " (r)" : "", now - speed->time_last, in TSMonitorWallClockTime()
307 … now - speed->time_start, snes_its - speed->snes_its, ksp_its - speed->ksp_its)); in TSMonitorWallClockTime()
311 speed->time_last = now; in TSMonitorWallClockTime()
312 speed->snes_its = snes_its; in TSMonitorWallClockTime()
313 speed->ksp_its = ksp_its; in TSMonitorWallClockTime()