You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
4.8 KiB
152 lines
4.8 KiB
5 years ago
|
#!/usr/bin/env python3
|
||
|
import os
|
||
|
import sys
|
||
|
import time
|
||
|
from typing import Any
|
||
|
|
||
4 years ago
|
from tqdm import tqdm
|
||
5 years ago
|
|
||
4 years ago
|
import cereal.messaging as messaging
|
||
|
from cereal import log
|
||
4 years ago
|
from cereal.visionipc.visionipc_pyx import VisionIpcServer, VisionStreamType # pylint: disable=no-name-in-module, import-error
|
||
4 years ago
|
from common.spinner import Spinner
|
||
5 years ago
|
from common.timeout import Timeout
|
||
4 years ago
|
from common.transformations.camera import get_view_frame_from_road_frame, eon_f_frame_size, tici_f_frame_size
|
||
|
from selfdrive.hardware import PC
|
||
4 years ago
|
from selfdrive.manager.process_config import managed_processes
|
||
5 years ago
|
from selfdrive.test.openpilotci import BASE_URL, get_url
|
||
|
from selfdrive.test.process_replay.compare_logs import compare_logs, save_log
|
||
|
from selfdrive.test.process_replay.test_processes import format_diff
|
||
|
from selfdrive.version import get_git_commit
|
||
4 years ago
|
from tools.lib.framereader import FrameReader
|
||
|
from tools.lib.logreader import LogReader
|
||
5 years ago
|
|
||
5 years ago
|
TEST_ROUTE = "99c94dc769b5d96e|2019-08-03--14-19-59"
|
||
5 years ago
|
|
||
4 years ago
|
|
||
4 years ago
|
def replace_calib(msg, calib):
|
||
|
msg = msg.as_builder()
|
||
|
if calib is not None:
|
||
|
msg.liveCalibration.extrinsicMatrix = get_view_frame_from_road_frame(*calib, 1.22).flatten().tolist()
|
||
|
return msg
|
||
|
|
||
4 years ago
|
|
||
4 years ago
|
def model_replay(lr, fr, desire=None, calib=None):
|
||
5 years ago
|
|
||
|
spinner = Spinner()
|
||
4 years ago
|
spinner.update("starting model replay")
|
||
5 years ago
|
|
||
4 years ago
|
vipc_server = None
|
||
4 years ago
|
pm = messaging.PubMaster(['roadCameraState', 'liveCalibration', 'lateralPlan'])
|
||
4 years ago
|
sm = messaging.SubMaster(['modelV2'])
|
||
5 years ago
|
|
||
|
# TODO: add dmonitoringmodeld
|
||
|
try:
|
||
4 years ago
|
managed_processes['modeld'].start()
|
||
5 years ago
|
time.sleep(5)
|
||
4 years ago
|
sm.update(1000)
|
||
5 years ago
|
|
||
4 years ago
|
desires_by_index = {v:k for k,v in log.LateralPlan.Desire.schema.enumerants.items()}
|
||
4 years ago
|
|
||
5 years ago
|
cal = [msg for msg in lr if msg.which() == "liveCalibration"]
|
||
|
for msg in cal[:5]:
|
||
4 years ago
|
pm.send(msg.which(), replace_calib(msg, calib))
|
||
5 years ago
|
|
||
|
log_msgs = []
|
||
|
frame_idx = 0
|
||
|
for msg in tqdm(lr):
|
||
4 years ago
|
if msg.which() == "liveCalibration":
|
||
|
pm.send(msg.which(), replace_calib(msg, calib))
|
||
4 years ago
|
elif msg.which() == "roadCameraState":
|
||
4 years ago
|
if desire is not None:
|
||
|
for i in desire[frame_idx].nonzero()[0]:
|
||
4 years ago
|
dat = messaging.new_message('lateralPlan')
|
||
|
dat.lateralPlan.desire = desires_by_index[i]
|
||
|
pm.send('lateralPlan', dat)
|
||
4 years ago
|
|
||
5 years ago
|
f = msg.as_builder()
|
||
|
pm.send(msg.which(), f)
|
||
4 years ago
|
|
||
|
img = fr.get(frame_idx, pix_fmt="yuv420p")[0]
|
||
|
if vipc_server is None:
|
||
|
w, h = {int(3*w*h/2): (w, h) for (w, h) in [tici_f_frame_size, eon_f_frame_size]}[len(img)]
|
||
|
vipc_server = VisionIpcServer("camerad")
|
||
|
vipc_server.create_buffers(VisionStreamType.VISION_STREAM_YUV_BACK, 40, False, w, h)
|
||
|
vipc_server.start_listener()
|
||
|
time.sleep(1) # wait for modeld to connect
|
||
|
|
||
|
vipc_server.send(VisionStreamType.VISION_STREAM_YUV_BACK, img.flatten().tobytes(), f.roadCameraState.frameId,
|
||
|
f.roadCameraState.timestampSof, f.roadCameraState.timestampEof)
|
||
|
|
||
5 years ago
|
with Timeout(seconds=15):
|
||
4 years ago
|
log_msgs.append(messaging.recv_one(sm.sock['modelV2']))
|
||
5 years ago
|
|
||
|
spinner.update("modeld replay %d/%d" % (frame_idx, fr.frame_count))
|
||
|
|
||
4 years ago
|
frame_idx += 1
|
||
5 years ago
|
if frame_idx >= fr.frame_count:
|
||
|
break
|
||
|
except KeyboardInterrupt:
|
||
|
pass
|
||
4 years ago
|
finally:
|
||
|
spinner.close()
|
||
|
managed_processes['modeld'].stop()
|
||
5 years ago
|
|
||
|
return log_msgs
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
|
||
|
update = "--update" in sys.argv
|
||
|
|
||
4 years ago
|
replay_dir = os.path.dirname(os.path.abspath(__file__))
|
||
|
ref_commit_fn = os.path.join(replay_dir, "model_replay_ref_commit")
|
||
|
|
||
5 years ago
|
lr = LogReader(get_url(TEST_ROUTE, 0))
|
||
|
fr = FrameReader(get_url(TEST_ROUTE, 0, log_type="fcamera"))
|
||
|
|
||
4 years ago
|
log_msgs = model_replay(list(lr), fr)
|
||
5 years ago
|
|
||
4 years ago
|
failed = False
|
||
|
if not update:
|
||
4 years ago
|
ref_commit = open(ref_commit_fn).read().strip()
|
||
5 years ago
|
log_fn = "%s_%s_%s.bz2" % (TEST_ROUTE, "model", ref_commit)
|
||
|
cmp_log = LogReader(BASE_URL + log_fn)
|
||
4 years ago
|
|
||
4 years ago
|
ignore = ['logMonoTime', 'valid',
|
||
|
'modelV2.frameDropPerc',
|
||
|
'modelV2.modelExecutionTime']
|
||
4 years ago
|
tolerance = None if not PC else 1e-3
|
||
5 years ago
|
results: Any = {TEST_ROUTE: {}}
|
||
4 years ago
|
results[TEST_ROUTE]["modeld"] = compare_logs(cmp_log, log_msgs, tolerance=tolerance, ignore_fields=ignore)
|
||
5 years ago
|
diff1, diff2, failed = format_diff(results, ref_commit)
|
||
|
|
||
4 years ago
|
print(diff2)
|
||
|
print('-------------')
|
||
|
print('-------------')
|
||
|
print('-------------')
|
||
|
print('-------------')
|
||
|
print('-------------')
|
||
5 years ago
|
print(diff1)
|
||
|
with open("model_diff.txt", "w") as f:
|
||
|
f.write(diff2)
|
||
|
|
||
4 years ago
|
if update or failed:
|
||
|
from selfdrive.test.openpilotci import upload_file
|
||
|
|
||
|
print("Uploading new refs")
|
||
|
|
||
|
new_commit = get_git_commit()
|
||
|
log_fn = "%s_%s_%s.bz2" % (TEST_ROUTE, "model", new_commit)
|
||
|
save_log(log_fn, log_msgs)
|
||
4 years ago
|
try:
|
||
|
upload_file(log_fn, os.path.basename(log_fn))
|
||
|
except Exception as e:
|
||
|
print("failed to upload", e)
|
||
|
|
||
|
with open(ref_commit_fn, 'w') as f:
|
||
|
f.write(str(new_commit))
|
||
4 years ago
|
|
||
|
print("\n\nNew ref commit: ", new_commit)
|
||
|
|
||
|
sys.exit(int(failed))
|