aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/graph_test.go
Commit message (Collapse)AuthorAge
* Adds Operations() method to GraphGravatar Vishvananda Ishaya Abrams2017-11-30
| | | | | | | | | There is currently no way to list all of the operations in a graph from the go api. This patch ads an Operations() method to retrieve the list using the existing TF_GraphNextOperation c api. The graph_test was modified to include testing this new method. Signed-off-by: Vishvananda Ishaya Abrams <vishvananda@gmail.com>
* differentiate package description and licenseGravatar zhengjiajin2017-03-27
|
* go: Ability to import a pre-defined Graph.Gravatar Asim Shankar2016-09-23
With this change, it should be possible to execute a pre-defined Graph created by any means (like a training session in a Python program) in Go. One more step towards #10 Change: 134096795