From: James Zern Date: Tue, 7 Aug 2018 18:37:33 +0000 (-0700) Subject: test/stress.sh: switch req. for 100 threads to 64 X-Git-Tag: v1.8.0~445^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54270e68443690dbb756978ee43bba6109bfbc6c;p=libvpx test/stress.sh: switch req. for 100 threads to 64 >64 is invalid for vp9 currently so no testing would be done. Change-Id: Ic0ccd606d5e76258adb27b7c44dcbd82e94c84d1 --- diff --git a/test/stress.sh b/test/stress.sh index 4dab18458..fdec764c7 100755 --- a/test/stress.sh +++ b/test/stress.sh @@ -167,13 +167,13 @@ vp9_stress() { } vp9_stress_test() { - for threads in 4 8 100; do + for threads in 4 8 64; do vp9_stress "$threads" "--row-mt=0" done } vp9_stress_test_row_mt() { - for threads in 4 8 100; do + for threads in 4 8 64; do vp9_stress "$threads" "--row-mt=1" done }