Enable new params learner for improved vehicle model estimation

old-commit-hash: a0adc44821
commatwo_master
Willem Melching 5 years ago
parent 168ac65d9e
commit 5fb17dc296
  1. 1
      RELEASES.md
  2. 2
      common/manager_helpers.py
  3. 2
      selfdrive/manager.py

@ -1,6 +1,7 @@
Version 0.8 (2020-xx-xx) Version 0.8 (2020-xx-xx)
======================== ========================
* White panda is no longer supported, upgrade to comma two or black panda * White panda is no longer supported, upgrade to comma two or black panda
* Improved vehicle model estimation using high precision localizer
Version 0.7.6 (2020-06-05) Version 0.7.6 (2020-06-05)
======================== ========================

@ -13,13 +13,13 @@ def print_cpu_usage(first_proc, last_proc):
("./_ui", 9.54), ("./_ui", 9.54),
("./camerad", 7.07), ("./camerad", 7.07),
("selfdrive.locationd.locationd", 27.46), ("selfdrive.locationd.locationd", 27.46),
("selfdrive.locationd.paramsd", 10.0),
("./_sensord", 6.17), ("./_sensord", 6.17),
("selfdrive.controls.dmonitoringd", 5.48), ("selfdrive.controls.dmonitoringd", 5.48),
("./boardd", 3.63), ("./boardd", 3.63),
("./_dmonitoringmodeld", 2.67), ("./_dmonitoringmodeld", 2.67),
("selfdrive.logmessaged", 2.71), ("selfdrive.logmessaged", 2.71),
("selfdrive.thermald", 2.41), ("selfdrive.thermald", 2.41),
("./paramsd", 2.18),
("selfdrive.locationd.calibrationd", 1.76), ("selfdrive.locationd.calibrationd", 1.76),
("./proclogd", 1.54), ("./proclogd", 1.54),
("./_gpsd", 0.09), ("./_gpsd", 0.09),

@ -181,7 +181,7 @@ managed_processes = {
"pandad": "selfdrive.pandad", "pandad": "selfdrive.pandad",
"ui": ("selfdrive/ui", ["./ui"]), "ui": ("selfdrive/ui", ["./ui"]),
"calibrationd": "selfdrive.locationd.calibrationd", "calibrationd": "selfdrive.locationd.calibrationd",
"paramsd": ("selfdrive/locationd", ["./paramsd"]), "paramsd": "selfdrive.locationd.paramsd",
"camerad": ("selfdrive/camerad", ["./camerad"]), "camerad": ("selfdrive/camerad", ["./camerad"]),
"sensord": ("selfdrive/sensord", ["./sensord"]), "sensord": ("selfdrive/sensord", ["./sensord"]),
"clocksd": ("selfdrive/clocksd", ["./clocksd"]), "clocksd": ("selfdrive/clocksd", ["./clocksd"]),

Loading…
Cancel
Save