reduce iter time to reduce exec time (#26388)

test_feature_precision_test_c
Chen Weihang 5 years ago committed by GitHub
parent 4ad504e7c7
commit 8c9229310c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,7 @@ class TestParallelExecutorBase(unittest.TestCase):
def check_network_convergence(cls,
method,
use_cuda=True,
iter=50,
iter=5,
batch_size=None,
feed_dict=None,
feed_data_reader=None,

@ -179,7 +179,7 @@ def batch_size(use_cuda):
def iter(use_cuda):
if use_cuda:
return 10
return 2
return 1
gpu_img, gpu_label = init_data(

Loading…
Cancel
Save