aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/equal_graph_def.h
Commit message (Collapse)AuthorAge
* Add hash methods for node and graph defsGravatar Igor Ganichev2017-09-25
| | | | PiperOrigin-RevId: 170009335
* Remove a bunch of proto.h includes from tensorflow/core headersGravatar Gunhan Gulsoy2017-08-23
| | | | | | | The goal is to make kernels mostly independent of proto headers, which will let us lock down our .so imports. RELNOTES: Remove proto.h includes from tensorflow/core headers. This may break users who has written custom c++ ops. PiperOrigin-RevId: 166237236
* Add "gradients" subscope when generating gradients in C/++Gravatar Skye Wanderman-Milne2017-07-13
| | | | | | This makes visualizing the graph easier and is also what Python does. PiperOrigin-RevId: 161884431
* Prepare to remove a bunch of proto.h includes from tensorflow/core headersGravatar Geoffrey Irving2017-06-29
| | | | | | | | | | | | The goal is to make kernels mostly independent of proto headers, which will let us lock down our .so imports. This CL does not remove any actual headers, but changes a bunch of files so that header removal is possible in a followup CL. It also marks the headers that will be removed with // TODO(b/62899350): Remove RELNOTES: n/a PiperOrigin-RevId: 160552878
* Remove unused overloads of SummarizeGraphDef and EqualGraphDefGravatar Geoffrey Irving2017-06-02
| | | | PiperOrigin-RevId: 157843404
* Make function instantiation use std::vector<NodeDef> instead of GraphDefGravatar Geoffrey Irving2017-06-01
| | | | | | | It's about to turn into std::vector<NodeInfoPtr>; this change gets us partway there. RELNOTES: n/a PiperOrigin-RevId: 157771141
* Make ImportGraphDef() work with functions.Gravatar Skye Wanderman-Milne2017-04-04
| | | | | | | | | In addition to modify graph_constructor.cc, this patch adds some other functionality to enable importing fucntions: * Ability to add FunctionDefLibraries to Graphs and FunctionLibraryDefinitions (in addition to existing functions) * FunctionDefsEqual() utility function Change: 152205258
* Move equal_graph_def.h/cc from core/graph to core/utilGravatar Skye Wanderman-Milne2017-03-29
This fixes build dependencies for a future patch (specifically allows referencing equal_graph_def.h from core/framework) Change: 151668115