Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fixbugs] Modify the timeout for test_converter_activation #70799

Merged
merged 3 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/legacy_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ set_tests_properties(test_imperative_transformer_sorted_gradient
PROPERTIES TIMEOUT 120)
set_tests_properties(test_imperative_optimizer PROPERTIES TIMEOUT 250)
set_tests_properties(test_imperative_optimizer_v2 PROPERTIES TIMEOUT 250)
set_tests_properties(test_activation_op PROPERTIES TIMEOUT 600)
set_tests_properties(test_activation_op PROPERTIES TIMEOUT 270)
set_tests_properties(test_normal PROPERTIES TIMEOUT 120)
set_tests_properties(test_cyclic_cifar_dataset PROPERTIES TIMEOUT 120)
set_tests_properties(test_fused_elemwise_activation_op PROPERTIES TIMEOUT 270)
Expand Down
4 changes: 2 additions & 2 deletions test/tensorrt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ if(NOT WIN32 AND TENSORRT_FOUND)
set_tests_properties(test_converter_norm PROPERTIES TIMEOUT "300")
set_tests_properties(test_converter_ops PROPERTIES TIMEOUT "500")
set_tests_properties(test_converter_stat PROPERTIES TIMEOUT "300")
set_tests_properties(test_converter_math PROPERTIES TIMEOUT "300")
set_tests_properties(test_converter_activation PROPERTIES TIMEOUT "300")
set_tests_properties(test_converter_math PROPERTIES TIMEOUT "600")
set_tests_properties(test_converter_activation PROPERTIES TIMEOUT "600")
set_tests_properties(test_converter_others PROPERTIES TIMEOUT "300")
set_tests_properties(test_converter_manipulation PROPERTIES TIMEOUT "600")
set_tests_properties(test_converter_creation PROPERTIES TIMEOUT "300")
Expand Down
Loading