Commit f2f435fb authored by Adam Procter's avatar Adam Procter

Disable a couple of tests, blocked by a shape inference bug (JIRAs are open as appropriate)

parent d5c22c1f
This diff is collapsed.
......@@ -595,7 +595,9 @@ def main():
t[3::-2] = None
t[4::-2] = None
t[5::-2] = None
t[-9000:-8000:2] = None
# TODO(amprocte): Failing due to bug in DynReplaceSlice inference.
# Re-enable when NGCORE-510 is fixed.
#t[-9000:-8000:2] = None
t[-9000:8000:2] = None
t[-5:5:2] = None
t[np.newaxis] = None
......@@ -614,7 +616,9 @@ def main():
t[0:100:2] = None
t[4:0:-2] = None
t[4:0:-3] = None
t[3:2:1] = None
# TODO(amprocte): Failing due to bug in DynReplaceSlice inference.
# Re-enable when NGCORE-510 is fixed.
#t[3:2:1] = None
t[4::-2] = None
#
......
......@@ -13315,6 +13315,8 @@ INSTANTIATE_TEST_CASE_P(
type_prop,
DeduceDynSliceTest,
::testing::Values(
DynSliceParams({{4}, {1}, {1}, {1}, {0}}, {{-9000}, {-8000}, {2}}, {{}, {}, {}, {}, {}}),
DynSliceParams({{5}, {1}, {1}, {1}, {0}}, {{3}, {2}, {1}}, {{}, {}, {}, {}, {}}),
DynSliceParams({{2, 3, 4, 5, 6}, {5}, {5}, {5}, {1, 2, 1, 1, 3}},
{{0, 1, 2, 3, 1}, {1, 3, 3, 5, 6}, {1, 1, 1, 2, 2}},
{{}, {}, {}, {}, {}}),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment