Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Oct 27, 2023
1 parent 23be939 commit 58bb31f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcli/src/tensor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ pub fn retrieve_or_make_inputs(
})
.collect();
}
if TypedFact::shape_and_dt_of(&*value[0]).compatible_with(&fact) {
if TypedFact::shape_and_dt_of(&value[0]).compatible_with(&fact) {
info!("Using fixed input for input called {} ({} turn(s))", name, value.len());
tmp.push(value.iter().map(|t| t.clone().into_tensor().into()).collect())
} else if fact.datum_type == f16::datum_type()
Expand Down

0 comments on commit 58bb31f

Please sign in to comment.