Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
f2f435fb
Commit
f2f435fb
authored
Jun 13, 2019
by
Adam Procter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable a couple of tests, blocked by a shape inference bug (JIRAs are open as appropriate)
parent
d5c22c1f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
dyn_replace_slice_test.in.cpp
test/dyn_replace_slice_test.in.cpp
+0
-0
generate_dyn_replace_slice_ref.py
test/ref_generators/generate_dyn_replace_slice_ref.py
+6
-2
type_prop.cpp
test/type_prop.cpp
+2
-0
No files found.
test/dyn_replace_slice_test.in.cpp
View file @
f2f435fb
This diff is collapsed.
Click to expand it.
test/ref_generators/generate_dyn_replace_slice_ref.py
View file @
f2f435fb
...
...
@@ -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
#
...
...
test/type_prop.cpp
View file @
f2f435fb
...
...
@@ -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
}},
{{},
{},
{},
{},
{}}),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment