Skip to content

Commit

Permalink
#0: lower the perf check limits
Browse files Browse the repository at this point in the history
  • Loading branch information
miawangTT committed Nov 27, 2024
1 parent b900835 commit 35ec7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ int main(int argc, char **argv) {
target_bandwidth = 4.5;
log_info(LogTest, "Perf check for pkt size >= 2048 words");
} else if (max_packet_size_words >= 1024) {
target_bandwidth = 4.7;
target_bandwidth = 4.3;
log_info(LogTest, "Perf check for pkt size >= 1024 words");
} else if (max_packet_size_words >= 512) {
target_bandwidth = 2.4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ int main(int argc, char **argv) {
target_bandwidth = 3.8;
log_info(LogTest, "Perf check for pkt size >= 2048 words");
} else if (max_packet_size_words >= 1024) {
target_bandwidth = 4.2;
target_bandwidth = 3.9;
log_info(LogTest, "Perf check for pkt size >= 1024 words");
} else if (max_packet_size_words >= 512) {
target_bandwidth = 2;
Expand Down

0 comments on commit 35ec7a1

Please sign in to comment.