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