CI is toasted
See original GitHub issueFrom bf1914c on main branch:
$SRC_DIR/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp:2:10: fatal error: ATen/native/quantized/affine_quantizer.h: No such file or directory
2 | #include <ATen/native/quantized/affine_quantizer.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Because torch core renamed affine_quantizer.h
into AffineQuantizer.h
.
This will eventually be fixed by https://github.com/pytorch/vision/pull/6133. The irony is that some jobs are relying on the nightly from today while some other jobs are still relying on nightlies from yesterday where the changes from core haven’t propagated. So these jobs are red on https://github.com/pytorch/vision/pull/6133.
I guess we’ll have to wait till tomorrow to merge https://github.com/pytorch/vision/pull/6133 and get our green CI back.
cc @seemethere
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:9 (8 by maintainers)
Top Results From Across the Web
CI Unit testing with Toast X (toast extended) | Libraries & Helpers
Chat with fellow EECMS users in the 'CI Unit testing with Toast X (toast extended)' ExpressionEngine community discussion forum thread.
Read more >Getting the hang of toasting a sandwich in my new CI, it's ...
r/castiron - Getting the hang of toasting a sandwich in my new CI, ... Sandwich is a basic sourdough turkey melt with Swiss...
Read more >Toasted - Soft Beige Holographic Jelly Nail Polish by ILNP
Toasted is a soft beige jelly with a touch of holographic flakes. A lovely neutral with a dash of holographic magic, Toasted paints...
Read more >CI Living Jen Lask's Avocado Toast Recipe - YouTube
Jen shares her recipe for avocado toast.
Read more >CI Living WCIA Toast - YouTube
CI Living WCIA Toast. 88 views 4 years ago. WCIA News. WCIA News. 9.84K subscribers. Subscribe. 1. I like this. I dislike this....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@malfet We don’t. I took a look at
qnms_kernel.cpp
, and I don’t think I saw any dependencies in it that would require #include that header file. maybe we can just remove the #include?Removed locally the include and can confirm that torchvision compiles and test_ops.py::test_qnms are passing.