Skip to content

Commit

Permalink
test manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Oct 23, 2023
1 parent d571aa3 commit 5e1acd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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 @@ -345,7 +345,7 @@ impl TypedOp for Resize {
as_op!();

fn output_facts(&self, inputs: &[&TypedFact]) -> TractResult<TVec<TypedFact>> {
let roi = self.optional_roi_input.and_then(|ix| inputs.get(ix));
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));
let output_shape = self.compute_output_shape(
Expand Down
1 change: 1 addition & 0 deletions test-rt/test-onnx-nnef-cycle/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ test_qlinearmatmul_2D
test_qlinearmatmul_3D
test_reshape_reordered_dims
test_resize_upsample_scales_linear_align_corners
test_resize_downsample_scales_linear
test_unsqueeze
"#
.trim()
Expand Down

0 comments on commit 5e1acd2

Please sign in to comment.