Skip to content
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

Adding support for the ONNX Scatter operation #2197

Closed
wants to merge 5 commits into from

working test

c77a046
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Adding support for the ONNX Scatter operation #2197

working test
c77a046
Select commit
Loading
Failed to load commit list.
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

See this annotation in the file changed.

@github-actions 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__