Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve latency tests #104

Merged
merged 9 commits into from
Jan 7, 2025
Prev Previous commit
Next Next commit
launch-yocto: analyse only SV stream 0 for latency test
Currently, no matter the number of recorded and analysed streams,
sv_timestamp_analysis only includes SV stream 0 results
in the generated .adoc report.

Due to this limitation, and because sv_timestamp_analysis is for now
unable to efficiently analyse a large amount of data, limit for now the
analysis to SV stream 0.
This will allow in future commits to run longer latency tests with
the currently available tools and hardware.

Signed-off-by: Elinor Montmasson <elinor.montmasson@savoirfairelinux.com>
  • Loading branch information
Revalioli committed Jan 6, 2025
commit a49afb420422cbff65378026bf3ae6fa2ceb5c53
2 changes: 1 addition & 1 deletion launch-yocto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ test_latency() {
--sub "${WORK_DIR}/ansible/ci_latency_tests/results/ts_guest0.txt" \
--pub "${WORK_DIR}/ansible/ci_latency_tests/results/ts_sv_publisher.txt" \
--subscriber_name "guest0" \
--stream "0..7" \
--stream "0" \
--max_latency "2000" \
-o "${WORK_DIR}/ansible/ci_latency_tests"

Expand Down