Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Oct 23, 2023
1 parent 6ef259c commit d571aa3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions onnx/src/ops/resize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ pub fn resize(
ctx: &ParsingContext,
node: &NodeProto,
) -> TractResult<(Box<dyn InferenceOp>, Vec<String>)> {
dbg!(ctx.onnx_operator_set_version);
dbg!(node);
let op = match ctx.onnx_operator_set_version {
10 => resize_10(node)?,
11..=12 => resize_11(node)?,
Expand Down Expand Up @@ -350,8 +348,6 @@ impl TypedOp for Resize {
let roi = self.optional_roi_input.and_then(|ix| inputs.get(ix));
let scales = self.optional_scales_input.and_then(|ix| inputs.get(ix));
let sizes = self.optional_sizes_input.and_then(|ix| inputs.get(ix));
dbg!(self);
dbg!(roi, scales, sizes);
let output_shape = self.compute_output_shape(
&inputs[0].shape,
scales.and_then(|f| f.konst.as_deref()),
Expand Down

0 comments on commit d571aa3

Please sign in to comment.