Skip to content

Commit

Permalink
#0: increase test vc/mux demux thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
nhuang-tt committed Feb 11, 2025
1 parent 02fb212 commit 2cd5421
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,10 @@ int main(int argc, char **argv) {
&& (demux_queue_size_bytes >= 0x20000)) {
double target_bandwidth = 0;
if (max_packet_size_words >= 1024) {
target_bandwidth = 10;
target_bandwidth = 13;
log_info(LogTest, "Perf check for pkt size >= 1024 words");
} else if (max_packet_size_words >= 256) {
target_bandwidth = 3;
target_bandwidth = 4;
log_info(LogTest, "Perf check for pkt size >= 256 words");
}
if (mux_bw < target_bandwidth) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -593,10 +593,10 @@ int main(int argc, char **argv) {
&& (demux_queue_size_bytes >= 0x20000)) {
double target_bandwidth = 0;
if (max_packet_size_words >= 1024) {
target_bandwidth = 11;
target_bandwidth = 17;
log_info(LogTest, "Perf check for pkt size >= 1024 words");
} else if (max_packet_size_words >= 256) {
target_bandwidth = 3;
target_bandwidth = 7;
log_info(LogTest, "Perf check for pkt size >= 256 words");
}
if (mux_bw < target_bandwidth) {
Expand Down

0 comments on commit 2cd5421

Please sign in to comment.