ref: 270fadc135b2005a6f23a87ab0f27ddb93cdc5e8
parent: f38ed0c560e492ffa4457127bdffb3638fcb4156
author: Johann <johannkoenig@google.com>
date: Mon Jan 23 08:30:37 EST 2017
PartialIDctTest: reduce number of RunQuantCheck iterations This currently runs 1000 * 1000 = one *million* times which is quite unnecessary. It's one of the slowest items in Jenkins and takes over an hour for each of the larger transforms. Change-Id: I01653b5e610683e1a2d778ec60cf5065562ab8db
--- a/test/partial_idct_test.cc
+++ b/test/partial_idct_test.cc
@@ -191,7 +191,7 @@
DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kMaxNumCoeffs]);
InitMem();
- for (int i = 0; i < kCountTestBlock * kCountTestBlock; ++i) {
+ for (int i = 0; i < kCountTestBlock; ++i) {
// Initialize a test block with input range [-mask_, mask_].
if (i == 0) {
for (int k = 0; k < input_block_size_; ++k) {