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
8627c495
Commit
8627c495
authored
Jan 09, 2018
by
Christian Convey
Committed by
Adam Procter
Jan 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes minor bugs in XLA-specific code. (#361)
parent
7f3dc2d7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
xla_tuple.hpp
src/ngraph/builder/xla_tuple.hpp
+1
-1
ngraph.hpp
src/ngraph/ngraph.hpp
+6
-0
No files found.
src/ngraph/builder/xla_tuple.hpp
View file @
8627c495
...
...
@@ -87,7 +87,7 @@ namespace ngraph
};
/// Convenience function for making a runtime tuple.
std
::
shared_ptr
<
XLATuple
>
make_tuple
(
const
XLAValues
&
elements
)
inline
std
::
shared_ptr
<
XLATuple
>
make_tuple
(
const
XLAValues
&
elements
)
{
return
std
::
make_shared
<
XLATuple
>
(
elements
);
}
...
...
src/ngraph/ngraph.hpp
View file @
8627c495
...
...
@@ -41,6 +41,12 @@
/// @brief Convenience functions that create addional graph nodes to implement commonly-used
/// recipes, for example auto-broadcast.
/// @namespace ngraph::xla
/// @brief Code to facilitate nGraph's support for XLA/HLO.
/// @namespace ngraph::xla::op
/// @brief Operators specific to nGraph's support for XLA/HLO.
#include "ngraph/builder/autobroadcast.hpp"
#include "ngraph/builder/numpy_transpose.hpp"
#include "ngraph/builder/reduce_ops.hpp"
...
...
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