Skip to content
Snippets Groups Projects
Commit f0fc1ea4 authored by Luke Grazette's avatar Luke Grazette
Browse files

Fix tolerance for Hlt1 to 3MHz

parent 24928165
No related branches found
No related tags found
1 merge request!330[RTADPA BW Tests] Introducing an Hlt1-bandwidth test via Moore_in_Allen
......@@ -502,9 +502,8 @@ if __name__ == '__main__':
}
# Prepare messages to GitLab
# limits on rate: 1 kHz for Hlt2 rate and 0.5% for Sprucing retention
tol = {'hlt1': 30000, 'hlt2': 1000, 'spruce': 500}
tol = 1000 if args.process == 'hlt2' else 500
# limits on rate: 3 MHz for Hlt1, 1 kHz for Hlt2 rate and 0.5% for Sprucing retention
tol = {'hlt1': 3e6, 'hlt2': 1000, 'spruce': 500}[args.process]
n_low_rate = len(
[info for info in rate_bw_info_by_line.values() if info.rate == 0])
n_high_rate = len(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment