aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/equal_graph_def_test.cc
Commit message (Collapse)AuthorAge
* Adding NodeDef names to error messages for better debuggability.Gravatar A. Unique TensorFlower2018-07-27
| | | | | | | The format used is as follows: {{node <node_name>}} PiperOrigin-RevId: 206370355
* Add hash methods for node and graph defsGravatar Igor Ganichev2017-09-25
| | | | PiperOrigin-RevId: 170009335
* Change function parameters to references to avoid copying, or otherwise move ↵Gravatar A. Unique TensorFlower2017-06-02
| | | | | | from function parameters when moving reduces the amount of copying. PiperOrigin-RevId: 157867333
* 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