tract-core 0.3.2

Tiny, no-nonsense, self contained, TensorFlow and ONNX inference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- core/src/ops/cnn/padding.rs
+++ core/src/ops/cnn/padding.rs
@@ -173,12 +173,4 @@ mod tests {
         );
     }
 
-    #[test]
-    fn same_upper() {
-        assert_eq!(
-            PaddingSpec::same(7usize, 1usize, 1, 2, true),
-            ComputedPaddedDim::new(4, 0, 0)
-        );
-    }
-
 }