Adding support for the ONNX Scatter operation #2197
Closed
GitHub Actions / clippy
failed
Aug 23, 2024 in 0s
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (1)
crates/burn-import/src/burn/node/scatter.rs|58 col 16| error: unused imports: ScalarKind
, ScalarType
, ShapeType
, and gather::GatherNode
--> crates/burn-import/src/burn/node/scatter.rs:58:16
|
58 | node::{gather::GatherNode, test::assert_tokens},
| ^^^^^^^^^^^^^^^^^^
59 | ScalarKind, ScalarType, ShapeType, TensorType,
| ^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^
|
= note: -D unused-imports
implied by -D warnings
= help: to override -D warnings
add #[allow(unused_imports)]
Filtered Findings (0)
Annotations
Check failure on line 58 in crates/burn-import/src/burn/node/scatter.rs
github-actions / clippy
[clippy] crates/burn-import/src/burn/node/scatter.rs#L58
error: unused imports: `ScalarKind`, `ScalarType`, `ShapeType`, and `gather::GatherNode`
--> crates/burn-import/src/burn/node/scatter.rs:58:16
|
58 | node::{gather::GatherNode, test::assert_tokens},
| ^^^^^^^^^^^^^^^^^^
59 | ScalarKind, ScalarType, ShapeType, TensorType,
| ^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_imports)]`
Raw output
crates/burn-import/src/burn/node/scatter.rs:58:16:e:error: unused imports: `ScalarKind`, `ScalarType`, `ShapeType`, and `gather::GatherNode`
--> crates/burn-import/src/burn/node/scatter.rs:58:16
|
58 | node::{gather::GatherNode, test::assert_tokens},
| ^^^^^^^^^^^^^^^^^^
59 | ScalarKind, ScalarType, ShapeType, TensorType,
| ^^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^
|
= note: `-D unused-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_imports)]`
__END__
Loading