]> granicus.if.org Git - libvpx/commitdiff
PartialIDctTest: reduce number of RunQuantCheck iterations
authorJohann <johannkoenig@google.com>
Mon, 23 Jan 2017 21:30:37 +0000 (13:30 -0800)
committerJohann <johannkoenig@google.com>
Mon, 23 Jan 2017 21:32:09 +0000 (13:32 -0800)
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

test/partial_idct_test.cc

index 7e901bd033105957cca6bff64291ceff54db0ed8..da6da52ad5b60d03d32e83d34e6c703588ece34a 100644 (file)
@@ -191,7 +191,7 @@ TEST_P(PartialIDctTest, RunQuantCheck) {
   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) {