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
7614020f
Commit
7614020f
authored
Jul 22, 2019
by
Scott Cyphers
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 's-barannikov/commutative_ops' into cyphers/s-barannikov
parents
6abeca2b
7122a231
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
15 additions
and
8 deletions
+15
-8
node.hpp
src/ngraph/node.hpp
+1
-1
add.hpp
src/ngraph/op/add.hpp
+2
-1
and.hpp
src/ngraph/op/and.hpp
+1
-2
equal.hpp
src/ngraph/op/equal.hpp
+2
-0
maximum.hpp
src/ngraph/op/maximum.hpp
+2
-1
minimum.hpp
src/ngraph/op/minimum.hpp
+2
-0
multiply.hpp
src/ngraph/op/multiply.hpp
+2
-1
not_equal.hpp
src/ngraph/op/not_equal.hpp
+2
-0
or.hpp
src/ngraph/op/or.hpp
+1
-2
No files found.
src/ngraph/node.hpp
View file @
7614020f
...
...
@@ -214,7 +214,7 @@ namespace ngraph
virtual
bool
is_constant
()
const
;
virtual
bool
is_null
()
const
{
return
false
;
}
virtual
bool
is_op
()
const
{
return
false
;
}
virtual
bool
is_commutative
()
{
return
false
;
}
virtual
bool
is_commutative
()
const
{
return
false
;
}
virtual
bool
is_dynamic
()
const
;
virtual
bool
has_state
()
const
{
return
false
;
}
size_t
get_instance_id
()
const
{
return
m_instance_id
;
}
...
...
src/ngraph/op/add.hpp
View file @
7614020f
...
...
@@ -51,10 +51,11 @@ namespace ngraph
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
virtual
bool
is_commutative
()
override
{
return
true
;
}
};
}
...
...
src/ngraph/op/and.hpp
View file @
7614020f
...
...
@@ -51,8 +51,7 @@ namespace ngraph
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
protected
:
virtual
bool
is_commutative
()
override
{
return
true
;
}
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
};
}
}
src/ngraph/op/equal.hpp
View file @
7614020f
...
...
@@ -56,6 +56,8 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
};
}
}
src/ngraph/op/maximum.hpp
View file @
7614020f
...
...
@@ -43,7 +43,8 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
override
{
return
true
;
}
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/minimum.hpp
View file @
7614020f
...
...
@@ -43,6 +43,8 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
...
...
src/ngraph/op/multiply.hpp
View file @
7614020f
...
...
@@ -43,10 +43,11 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
virtual
bool
is_commutative
()
override
{
return
true
;
}
};
};
...
...
src/ngraph/op/not_equal.hpp
View file @
7614020f
...
...
@@ -42,6 +42,8 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
};
}
}
src/ngraph/op/or.hpp
View file @
7614020f
...
...
@@ -49,8 +49,7 @@ namespace ngraph
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
protected
:
virtual
bool
is_commutative
()
override
{
return
true
;
}
virtual
bool
is_commutative
()
const
override
{
return
true
;
}
};
}
}
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