aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/c_api_test.cc
Commit message (Collapse)AuthorAge
...
* C API: Follow naming conventions.Gravatar Asim Shankar2016-09-27
| | | | | | | | | | | In particular, TF_AttrType instead of TF_Attr_Type and TF_AttrMetadata instead of TF_AttrMetadata. This is more in line with other multi-word names like TF_OperationDescription and TF_SessionOptions. Fixes #4595 Change: 134423578
* C API: Introduce TF_ImportGraphDef.Gravatar Asim Shankar2016-09-22
| | | | | | | This is the C API equivalent of Python's tf.import_graph_def(). Does not support node rebinding and some other features yet, but should be sufficient to allow execution of pre-defined graphs in other language bindings. Change: 134034522
* C-API: Add TF_ColocateWith to enable colocation.Gravatar Asim Shankar2016-09-15
| | | | | | | | While at it, define named constants for strings used in the colocation attribute. After this change, all non-test code should be using the named constants and not string literals ("_class", "loc:@"). The tests might still use the literals as that makes the tests easier to read. Change: 133310403
* Add TF_DeleteLibraryHandle, for freeing the memory allocated by TF_LoadLibrary.Gravatar A. Unique TensorFlower2016-09-12
| | | | | | This is useful when calling the C API from C++, to avoid memory leaks being reported. Change: 132937873
* C-API: Add the ability to get all the registered ops.Gravatar Asim Shankar2016-09-09
| | | | Change: 132684015
* Cosmetic: Consistently avoid using a namespace specifier when the 'using'Gravatar Asim Shankar2016-09-07
| | | | | statement in the file obviates it. Change: 132517534
* TensorFlow C API: Add a Set and Get Tensor Shape function.Gravatar Vijay Vasudevan2016-09-07
| | | | | | | | | Wires up ShapeRefiner into C and C++ API so that we can query and set the shapes of outputs. Currently only works for the C-API, but the plumbing exists for the C++ API, which we can only turn on once we are using the C++ shape functions for everything. Change: 132479208
* C-API: Add functions to get values of operation attributes.Gravatar Asim Shankar2016-09-07
| | | | | | Introduces the TF_OperationGetAttr* family of functions that parallel TF_SetAttr* functions used during graph building. Change: 132405007
* Fix ~63 ClangTidy - Performance findings in TensorFlow.Gravatar Vincent Vanhoucke2016-08-31
| | | | Change: 131891101
* Split NodeDef out of graph.proto into node_def.proto. Needed so weGravatar A. Unique TensorFlower2016-08-22
| | | | | can use NodeDef in FunctionDef. Change: 130982373
* Add TF_AllocateTensor to the C API to simplify theGravatar Jonathan Hseu2016-08-17
| | | | | common case where bindings require C-allocated tensors. Change: 130565203
* Rename TF_Node to TF_Operation in C API.Gravatar A. Unique TensorFlower2016-08-08
| | | | Change: 129673736
* Move C API files (and related files used by SWIG wrappers)Gravatar A. Unique TensorFlower2016-07-29
to new tensorflow/c directory. Change: 128855990