diff --git a/python/paddle/fluid/tests/unittests/CMakeLists.txt b/python/paddle/fluid/tests/unittests/CMakeLists.txt index 4a70cd3c7e10b094040b2e62b91e5996e0d8e317..1ea16adfaeb79dd0c9f426bc7dcfa79778b04cf4 100644 --- a/python/paddle/fluid/tests/unittests/CMakeLists.txt +++ b/python/paddle/fluid/tests/unittests/CMakeLists.txt @@ -661,8 +661,11 @@ if(NOT ON_INFER) py_test_modules(test_parallel_executor_seresnext_with_reduce_cpu MODULES test_parallel_executor_seresnext_with_reduce_cpu) py_test_modules(test_parallel_executor_seresnext_with_fuse_all_reduce_cpu MODULES test_parallel_executor_seresnext_with_fuse_all_reduce_cpu) set_tests_properties(test_parallel_executor_seresnext_base_cpu PROPERTIES TIMEOUT 900) + set_tests_properties(test_parallel_executor_seresnext_base_cpu PROPERTIES LABELS "RUN_TYPE=NIGHTLY") set_tests_properties(test_parallel_executor_seresnext_with_reduce_cpu PROPERTIES TIMEOUT 750) + set_tests_properties(test_parallel_executor_seresnext_with_reduce_cpu PROPERTIES "RUN_TYPE=NIGHTLY") set_tests_properties(test_parallel_executor_seresnext_with_fuse_all_reduce_cpu PROPERTIES TIMEOUT 750) + set_tests_properties(test_parallel_executor_seresnext_with_fuse_all_reduce_cpu LABELS "RUN_TYPE=NIGHTLY") endif() if(NOT WIN32) @@ -935,6 +938,7 @@ set_tests_properties(test_dygraph_multi_forward PROPERTIES TIMEOUT 120) set_tests_properties(test_imperative_ocr_attention_model PROPERTIES TIMEOUT 120) set_tests_properties(test_imperative_mnist PROPERTIES TIMEOUT 120) set_tests_properties(test_fused_elemwise_activation_op PROPERTIES TIMEOUT 270) +set_tests_properties(test_fused_elemwise_activation_op PROPERTIES LABELS "RUN_TYPE=NIGHTLY") set_tests_properties(test_gru_op PROPERTIES TIMEOUT 200) set_tests_properties(test_regularizer PROPERTIES TIMEOUT 150) set_tests_properties(test_imperative_resnet PROPERTIES TIMEOUT 200) diff --git a/tools/parallel_UT_rule.py b/tools/parallel_UT_rule.py index cd7160a6188a4309fa128908ed38984bd7675656..b5e12d6f96ddc4bdeaafdba8ec8d9ec2ff9ba28b 100644 --- a/tools/parallel_UT_rule.py +++ b/tools/parallel_UT_rule.py @@ -638,7 +638,7 @@ TETRAD_PARALLEL_JOB_NEW = [ 'test_pool3d_op', 'test_static_save_load', 'test_trilinear_interp_v2_op', 'test_trilinear_interp_op', 'test_trt_gather_nd_op', 'test_trt_gather_op', 'test_trt_flatten_op', 'test_trt_instance_norm_op', 'test_trt_yolo_box_op', - 'test_trt_reshape_op', 'test_trt_reduce_mean_op', 'test_trt_pool_op', + 'test_trt_reshape_op', 'test_trt_reduce_mean_op', 'test_trt_dynamic_shape_ernie_ser_deser', 'test_trt_elementwise_op', 'test_trt_affine_channel_op', 'test_trt_conv_pass', 'test_softmax_with_cross_entropy_op', 'test_trt_matmul',