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
d1674497
Commit
d1674497
authored
Jun 08, 2019
by
Adam Procter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More element type coverage because hey why not
parent
c8691054
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
dyn_slice_test.in.cpp
test/dyn_slice_test.in.cpp
+0
-0
generate_dyn_slice_ref.py
test/ref_generators/generate_dyn_slice_ref.py
+5
-2
No files found.
test/dyn_slice_test.in.cpp
View file @
d1674497
This diff is collapsed.
Click to expand it.
test/ref_generators/generate_dyn_slice_ref.py
View file @
d1674497
...
...
@@ -519,7 +519,7 @@ def main():
t
=
SliceTestWriter
(
stream
=
f
)
t
.
set_shape
((
4
,))
for
dt
in
[
'int32'
,
'
floa
t32'
]:
for
dt
in
[
'int32'
,
'
int64'
,
'float32'
,
'uin
t32'
]:
t
.
set_dtype
(
dt
)
t
[
np
.
newaxis
,
3
:
0
:
-
1
]
...
...
@@ -553,6 +553,7 @@ def main():
# A couple of tests for negative-stride slicing. The issue we want to
# be on the lookout for is this:
#
# [ORIGINAL]
# 01234567
# ..1..0.. [5:0:-3] # suppose we start with this, want to convert
# _____ # to pos stride. suppose that our stride is
...
...
@@ -561,6 +562,7 @@ def main():
# # multiple of the strides (e.g. here: we get
# # elements 5 and 2.)
#
# [INCORRECT]
# 01234567
# .0..1... [1:6:3] # if we just reverse the sign of the stride
# _____ # and flip the start/end indices while
...
...
@@ -568,6 +570,7 @@ def main():
# # elements. (e.g. here: we get elements 1 and
# # 4, which are not what we want.)
#
# [CORRECT]
# 01234567
# ..0..1.. [2:6:3] # the correct thing to do is to adjust the
# ____ # start of our reversed slice to be the last
...
...
@@ -602,7 +605,7 @@ def main():
t
[::
0
]
# error expected (stride==0)
t
.
set_shape
((
2
,
3
,
4
))
for
dt
in
[
'int32'
,
'
floa
t32'
]:
for
dt
in
[
'int32'
,
'
int64'
,
'float32'
,
'uin
t32'
]:
t
.
set_dtype
(
dt
)
t
[
1
,
np
.
newaxis
]
...
...
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