mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-08 20:38:06 -05:00
chore(optimizer): fix clippy lints
This commit is contained in:
@@ -481,7 +481,7 @@ impl DagBuilder<'_> {
|
||||
..
|
||||
} => shape.clone(),
|
||||
Operator::Dot {
|
||||
kind: DotKind::Unsupported { .. },
|
||||
kind: DotKind::Unsupported,
|
||||
weights,
|
||||
inputs,
|
||||
} => {
|
||||
|
||||
@@ -342,11 +342,11 @@ impl VariancedDag {
|
||||
Operator::Input { .. } | Operator::ZeroNoise { .. } => unreachable!(),
|
||||
|
||||
Operator::Dot {
|
||||
kind: DotKind::CompatibleTensor { .. },
|
||||
kind: DotKind::CompatibleTensor,
|
||||
..
|
||||
} => todo!("TODO"),
|
||||
Operator::Dot {
|
||||
kind: DotKind::Unsupported { .. },
|
||||
kind: DotKind::Unsupported,
|
||||
..
|
||||
} => panic!("Unsupported"),
|
||||
Operator::Round { .. } => {
|
||||
|
||||
@@ -169,11 +169,11 @@ fn out_variance(
|
||||
})
|
||||
}
|
||||
Operator::Dot {
|
||||
kind: DotKind::CompatibleTensor { .. },
|
||||
kind: DotKind::CompatibleTensor,
|
||||
..
|
||||
} => todo!("TODO"),
|
||||
Operator::Dot {
|
||||
kind: DotKind::Unsupported { .. },
|
||||
kind: DotKind::Unsupported,
|
||||
..
|
||||
} => panic!("Unsupported"),
|
||||
Operator::Dot {
|
||||
|
||||
Reference in New Issue
Block a user