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
7664a135
Commit
7664a135
authored
Aug 11, 2017
by
Christian Convey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #39. Disables broken unit tests.
parent
341a34b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
axes.cpp
test/axes.cpp
+8
-8
No files found.
test/axes.cpp
View file @
7664a135
...
...
@@ -310,7 +310,7 @@ TEST(axes, index)
EXPECT_EQ
(
7
,
b
[
1
].
length
());
}
TEST
(
axes
,
as_nested_list
)
TEST
(
axes
,
DISABLED_
as_nested_list
)
{
Axis
C
=
make_axis
(
5
);
Axis
H
=
make_axis
(
3
);
...
...
@@ -325,7 +325,7 @@ TEST(axes, as_nested_list)
FAIL
();
}
TEST
(
axes
,
flatten
)
TEST
(
axes
,
DISABLED_
flatten
)
{
Axis
C
=
make_axis
(
5
);
Axis
H
=
make_axis
(
3
);
...
...
@@ -336,7 +336,7 @@ TEST(axes, flatten)
EXPECT_TRUE
(
c
.
is_flattened
());
}
TEST
(
axes
,
as_flattened_list
)
TEST
(
axes
,
DISABLED_
as_flattened_list
)
{
FAIL
();
}
...
...
@@ -364,7 +364,7 @@ TEST(axes, hash_axes)
m2
[
axes
]
=
1
;
}
TEST
(
axes
,
reaxe_0d_to_1d
)
TEST
(
axes
,
DISABLED_
reaxe_0d_to_1d
)
{
TensorDescription
td
{};
ngraph
::
ndarray
x
=
random
(
td
);
...
...
@@ -382,7 +382,7 @@ TEST(axes, reaxe_0d_to_1d)
FAIL
();
}
TEST
(
axes
,
reaxe_0d_to_2d
)
TEST
(
axes
,
DISABLED_
reaxe_0d_to_2d
)
{
// td = TensorDescription(axes=())
// x = random(td)
...
...
@@ -407,7 +407,7 @@ TEST(axes, reaxe_0d_to_2d)
// I started refactoring into smaller pieces as seen in tests above, but
// stopped ...
//-----------------------------------------------------------------------------------------------
TEST
(
axes
,
simple_tensors
)
TEST
(
axes
,
DISABLED_
simple_tensors
)
{
// # A simple vector
// td1 = TensorDescription(axes=[ax_A])
...
...
@@ -582,7 +582,7 @@ TEST(axes, axes_map)
// assert axes_after == axes_map.map_axes(axes_before)
}
TEST
(
axes
,
axes_map_immutable
)
TEST
(
axes
,
DISABLED_
axes_map_immutable
)
{
FAIL
();
// axes_map = AxesMap({})
...
...
@@ -591,7 +591,7 @@ TEST(axes, axes_map_immutable)
// axes_map["x"] = "y"
}
TEST
(
axes
,
axes_map_init_from_axes
)
TEST
(
axes
,
DISABLED_
axes_map_init_from_axes
)
{
FAIL
();
// axes_map = AxesMap({ng.make_axis(1, name="aaa"): ng.make_axis(1, name="zzz")})
...
...
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