We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug ./run-tests.sh std will fail on stable (1.82.0), because some clipping warnings are in use which are new to 1.83.0.
./run-tests.sh std
stable
1.83.0
To Reproduce
main
HEAD
rustup override set stable
See:
Compiling burn-import v0.16.0 (/home/crutcher/git/burn/burn/crates/burn-import) error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/conv/conv2d/gemm/homogeneous/base.rs:79:17 | 79 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter` | = note: `-D unknown-lints` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unknown_lints)]` error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/pool/adaptive_avg_pool2d.rs:65:9 | 65 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter` error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/pool/adaptive_avg_pool2d_backward.rs:69:9 | 69 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter`
The text was updated successfully, but these errors were encountered:
To resolve, try rustup update stable.
rustup update stable
Sorry, something went wrong.
Set a min-version for burn-jit, due to clippy.
01cd1fd
At 1.82.0; burn-jit won't compile: ``` Compiling burn-import v0.16.0 (/home/crutcher/git/burn/burn/crates/burn-import) error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/conv/conv2d/gemm/homogeneous/base.rs:79:17 | 79 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter` | = note: `-D unknown-lints` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unknown_lints)]` error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/pool/adaptive_avg_pool2d.rs:65:9 | 65 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter` error: unknown lint: `clippy::manual_div_ceil` --> crates/burn-jit/src/kernel/pool/adaptive_avg_pool2d_backward.rs:69:9 | 69 | #[allow(clippy::manual_div_ceil)] | ^^^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::manual_filter` ``` tracel-ai#2569
No branches or pull requests
Describe the bug
./run-tests.sh std
will fail onstable
(1.82.0), because some clipping warnings are in use which are new to1.83.0
.To Reproduce
main
atHEAD
rustup override set stable
# 1.82.0./run-tests.sh std
See:
The text was updated successfully, but these errors were encountered: