From c283765082418d97f80056a2d0f197444ec38260 Mon Sep 17 00:00:00 2001 From: Mathieu Poumeyrol Date: Tue, 5 Sep 2023 16:16:05 +0200 Subject: [PATCH] ignore slice & downsample tests --- test-rt/test-tflite/suite.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-rt/test-tflite/suite.rs b/test-rt/test-tflite/suite.rs index 835aa3652b..43db9f9fc4 100644 --- a/test-rt/test-tflite/suite.rs +++ b/test-rt/test-tflite/suite.rs @@ -33,7 +33,7 @@ fn ignore_onnx(t: &[String]) -> bool { fn ignore_conv(t: &[String]) -> bool { let [section, unit] = t else { return false }; - section == "deconv" + ["deconv", "slice", "downsample"].contains(&&**section) // grouping and depthwise || unit.starts_with("group") // conv 3D