Skip to content

Commit d0f48f2

Browse files
author
Github Executorch
committed
CortexM Tests - Add Boundary tests to test_mul
1 parent c4c943f commit d0f48f2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

backends/cortex_m/test/ops/test_mul.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,14 @@ class CortexMTensorMul(Model):
111111
ramp_tensor(-5, 5, (1, 2, 1, 2)),
112112
),
113113
),
114+
"boundary_extreme_positive": McuTestCase(
115+
CortexMTensorMul(),
116+
(ramp_tensor(127, 127, (2, 2)), ramp_tensor(1, 1, (2, 2))),
117+
),
118+
"boundary_extreme_negative": McuTestCase(
119+
CortexMTensorMul(),
120+
(ramp_tensor(-128, -128, (2, 2)), ramp_tensor(1, 1, (2, 2))),
121+
),
114122
}
115123

116124

0 commit comments

Comments
 (0)