Deprecate ModelDataV2.gpuExecutionTime (#33607)

Deprecate gpuExecutionTime
pull/33611/head
Kacper Rączy 7 months ago committed by GitHub
parent 48938098e0
commit 580388e209
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      cereal/log.capnp
  2. 2
      tools/latencylogger/README.md
  3. 2
      tools/latencylogger/latency_logger.py

@ -933,7 +933,6 @@ struct ModelDataV2 {
frameDropPerc @2 :Float32;
timestampEof @3 :UInt64;
modelExecutionTime @15 :Float32;
gpuExecutionTime @17 :Float32;
rawPredictions @16 :Data;
# predicted future position, orientation, etc..
@ -960,12 +959,13 @@ struct ModelDataV2 {
# Model perceived motion
temporalPose @21 :Pose;
# e2e lateral planner
action @26: Action;
gpuExecutionTimeDEPRECATED @17 :Float32;
navEnabledDEPRECATED @22 :Bool;
locationMonoTimeDEPRECATED @24 :UInt64;
# e2e lateral planner
lateralPlannerSolutionDEPRECATED @25: LateralPlannerSolution;
action @26: Action;
struct LeadDataV2 {
prob @0 :Float32; # probability that car is your lead at time t

@ -51,7 +51,7 @@ Frame ID: 1202
Execution finished 63.002552
modelV2 published 63.148747
modelV2.modelExecutionTime 23.62649142742157
modelV2.gpuExecutionTime 0.0
modelV2.gpuExecutionTimeDEPRECATED 0.0
plannerd
longitudinalPlan published 69.715999
longitudinalPlan.solverExecutionTime 0.5619999719783664

@ -23,7 +23,7 @@ MSGQ_TO_SERVICE = {
}
SERVICE_TO_DURATIONS = {
'camerad': ['processingTime'],
'modeld': ['modelExecutionTime', 'gpuExecutionTime'],
'modeld': ['modelExecutionTime', 'gpuExecutionTimeDEPRECATED'],
'plannerd': ['solverExecutionTime'],
}

Loading…
Cancel
Save