paramsd profiling

pull/2281/head
Adeeb Shihadeh 5 years ago
parent 3f88df62c7
commit 0d11acf34e
  1. 49
      selfdrive/test/profiling/locationd.py
  2. 29
      selfdrive/test/profiling/profiler.py

@ -1,49 +0,0 @@
#!/usr/bin/env python3
import cProfile # pylint: disable=import-error
import pprofile # pylint: disable=import-error
import pyprof2calltree # pylint: disable=import-error
from tools.lib.logreader import LogReader
from selfdrive.locationd.locationd import locationd_thread
from selfdrive.test.profiling.lib import SubMaster, PubMaster, ReplayDone
BASE_URL = "https://commadataci.blob.core.windows.net/openpilotci/"
CARS = {
'toyota': ("77611a1fac303767|2020-02-29--13-29-33/3", "TOYOTA COROLLA TSS2 2019"),
}
def get_inputs(msgs, process):
sub_socks = ['gpsLocationExternal', 'sensorEvents', 'cameraOdometry', 'liveCalibration', 'carState']
trigger = 'cameraOdometry'
sm = SubMaster(msgs, trigger, sub_socks)
pm = PubMaster()
return sm, pm
if __name__ == "__main__":
segment, fingerprint = CARS['toyota']
segment = segment.replace('|', '/')
rlog_url = f"{BASE_URL}{segment}/rlog.bz2"
msgs = list(LogReader(rlog_url))
# Statistical
sm, pm = get_inputs(msgs, 'locationd')
with pprofile.StatisticalProfile()(period=0.00001) as pr:
try:
locationd_thread(sm, pm)
except ReplayDone:
pass
pr.dump_stats('cachegrind.out.locationd_statistical')
# Deterministic
sm, pm = get_inputs(msgs, 'controlsd')
with cProfile.Profile() as pr:
try:
locationd_thread(sm, pm)
except ReplayDone:
pass
pyprof2calltree.convert(pr.getstats(), 'cachegrind.out.locationd_deterministic')

@ -27,7 +27,10 @@ def get_inputs(msgs, process):
sm = SubMaster(msgs, trigger, sub_socks) sm = SubMaster(msgs, trigger, sub_socks)
pm = PubMaster() pm = PubMaster()
can_sock = SubSocket(msgs, 'can') if 'can' in sub_socks:
can_sock = SubSocket(msgs, 'can')
else:
can_sock = None
return sm, pm, can_sock return sm, pm, can_sock
@ -39,32 +42,38 @@ def profile(proc, func, car='toyota'):
os.environ['FINGERPRINT'] = fingerprint os.environ['FINGERPRINT'] = fingerprint
# Statistical def run():
sm, pm, can_sock = get_inputs(msgs, proc) sm, pm, can_sock = get_inputs(msgs, proc)
with pprofile.StatisticalProfile()(period=0.00001) as pr:
try: try:
func(sm, pm, can_sock) if can_sock is not None:
func(sm, pm, can_sock)
else:
func(sm, pm)
except ReplayDone: except ReplayDone:
pass pass
# Statistical
with pprofile.StatisticalProfile()(period=0.00001) as pr:
run()
pr.dump_stats(f'cachegrind.out.{proc}_statistical') pr.dump_stats(f'cachegrind.out.{proc}_statistical')
# Deterministic # Deterministic
sm, pm, can_sock = get_inputs(msgs, proc)
with cProfile.Profile() as pr: with cProfile.Profile() as pr:
try: run()
func(sm, pm, can_sock)
except ReplayDone:
pass
pyprof2calltree.convert(pr.getstats(), f'cachegrind.out.{proc}_deterministic') pyprof2calltree.convert(pr.getstats(), f'cachegrind.out.{proc}_deterministic')
if __name__ == '__main__': if __name__ == '__main__':
from selfdrive.controls.controlsd import main as controlsd_thread from selfdrive.controls.controlsd import main as controlsd_thread
from selfdrive.controls.radard import radard_thread from selfdrive.controls.radard import radard_thread
from selfdrive.locationd.locationd import locationd_thread
from selfdrive.locationd.paramsd import main as paramsd_thread
procs = { procs = {
'radard': radard_thread, 'radard': radard_thread,
'controlsd': controlsd_thread, 'controlsd': controlsd_thread,
'locationd': locationd_thread,
'paramsd': paramsd_thread,
} }
proc = sys.argv[1] proc = sys.argv[1]

Loading…
Cancel
Save