Skip to content

Commit

Permalink
spurious debug in onnx resize loader
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed May 9, 2024
1 parent 5576526 commit 1225f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onnx/src/ops/resize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub fn resize(
ctx: &ParsingContext,
node: &NodeProto,
) -> TractResult<(Box<dyn InferenceOp>, Vec<String>)> {
let op = match dbg!(ctx.onnx_operator_set_version) {
let op = match ctx.onnx_operator_set_version {
10 => resize_10(node)?,
11..=12 => resize_11(node)?,
13..=17 => resize_13(node)?,
Expand Down

0 comments on commit 1225f3f

Please sign in to comment.