Skip to content

Commit 98be76c

Browse files
Merge branch 'master' into r0.15
2 parents baddde2 + d9f2d3e commit 98be76c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ get_filename_component(
291291
ABSOLUTE
292292
)
293293

294+
add_subdirectory(examples)
294295
if (DEFINED TF_SRC_DIR)
295296
message(STATUS "TensorFlow_SRC_DIR: ${TensorFlow_SRC_DIR}")
296297
add_subdirectory(examples/cpp)

src/ngraph_builder.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ std::shared_ptr<TOpType> ConstructNgNode(const std::string& op_name,
9595
TArg&&... Args) {
9696
auto ng_node = std::make_shared<TOpType>(std::forward<TArg>(Args)...);
9797
ng_node->set_friendly_name(op_name);
98-
// Fails for now, so commenting out for now
99-
// ng_node->add_provenance_tag(op_name);
98+
ng_node->add_provenance_tag(op_name);
10099
return ng_node;
101100
}
102101

0 commit comments

Comments
 (0)