-
Notifications
You must be signed in to change notification settings - Fork 823
[SYCL][E2E] Increase tests timeout #21523
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| // TIMEOUT: 600 | ||
| // REQUIRES: aspect-ext_oneapi_bindless_images | ||
| // REQUIRES: aspect-ext_oneapi_image_array | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| // TIMEOUT: 600 | ||
| // REQUIRES: aspect-ext_oneapi_bindless_images | ||
|
|
||
| // UNSUPPORTED: hip | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1198,9 +1198,9 @@ def get_sycl_ls_verbose(sycl_device, env): | |
| import psutil | ||
|
|
||
| if config.test_mode == "run-only": | ||
| lit_config.maxIndividualTestTime = 300 | ||
| lit_config.maxIndividualTestTime = 1200 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. im not sure about this, can we not run with lower makeopts on this machines? fyi @uditagarwal97
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1. If a test takes too long to run, we could instead try to split the test. |
||
| else: | ||
| lit_config.maxIndividualTestTime = 600 | ||
| lit_config.maxIndividualTestTime = 1600 | ||
|
|
||
| except ImportError: | ||
| pass | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this documented anywhere? I didn't realize we can set individual test time limits like this and I don't see it used anywhere else.