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
This commit is contained in:
parent
f38ed0c560
commit
270fadc135
@ -191,7 +191,7 @@ TEST_P(PartialIDctTest, RunQuantCheck) {
|
|||||||
DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kMaxNumCoeffs]);
|
DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kMaxNumCoeffs]);
|
||||||
|
|
||||||
InitMem();
|
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_].
|
// Initialize a test block with input range [-mask_, mask_].
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
for (int k = 0; k < input_block_size_; ++k) {
|
for (int k = 0; k < input_block_size_; ++k) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user