-
Notifications
You must be signed in to change notification settings - Fork 75
[release/2.9] UT fixes #2913
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
base: release/2.9
Are you sure you want to change the base?
[release/2.9] UT fixes #2913
Conversation
|
Jenkins build for 206c95fc0c8082c3c7818da44f62b3686c2573d0 commit finished as FAILURE |
206c95f to
7a3f221
Compare
|
Jenkins build for 11230eedc7f3cd6f9c33c9d4e749ebeddb2a2b28 commit finished as NOT_BUILT |
|
Jenkins build for 11230eedc7f3cd6f9c33c9d4e749ebeddb2a2b28 commit finished as FAILURE |
|
Jenkins build for 49f243c563d35b58c8ae98ed6d40321b1fdc2857 commit finished as FAILURE |
49f243c to
b560377
Compare
|
Jenkins build for b56037734c901382419df7dcf7a5788483aca104 commit finished as FAILURE |
af9bed8 to
b560377
Compare
|
Jenkins build for 2ae8e219662329805444071f5ea569c64efe66a6 commit finished as FAILURE |
…ytorch#162644) The tests were comparing raw exported strings for protobuf comparison, which is not backward/forward compatible with different versions of protobuf. This PR parses the strings into protobuf and compares the protobufs directly, similar to what we did in assertImageProto. Our test failed because we used a different version of protobuf, which output 44100.0 instead of 44100, which resulted in an error. However, they are equal, but only different in the exported strings. Pull Request resolved: pytorch#162644 Approved by: https://github.com/justinchuby, https://github.com/Skylion007
Fixes pytorch#163149 ### Summary: Fixes mypy type checking failures in `test_type_hints` by consolidating typing imports and eliminating duplicate/conflicting import patterns that caused mypy to fail resolving type annotations. ### Impact: - `test_type_hints` works fine now - module: tests Pull Request resolved: pytorch#163150 Approved by: https://github.com/Skylion007
2ae8e21 to
18349dd
Compare
|
Jenkins build for 18349dd4326ba40ab2e38743de3ab4433fe1baf1 commit finished as FAILURE |
Skipped tests:
Fixed tests:
FAILED:
Fixes ROCM-989