aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/framework/gradients.h
Commit message (Collapse)AuthorAge
* Remove THIRD_PARTY_ from #include guardsGravatar Sanjoy Das2018-01-24
| | | | | | They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
* Add C++ gradients to c_api.Gravatar Suharsh Sivakumar2017-04-13
| | | | | | | | | | | #6268 This CL does the following: (1) Adds TF_AddGradients function to C_API which adds gradient nodes for the specified inputs. (2) Adds internal constructor for Scope, need to create a scope from an existing graph in the c_api. (3) Adds constructor for AddSymbolicGradients that assumes OnesLike when grad_inputs aren't provided. (4) Improves error message when gradients aren't provided. Change: 153092774
* Migrate to new namespace for Input, Output, etc. in the C++ API.Gravatar A. Unique TensorFlower2017-01-18
| | | | Change: 144857401
* Automated rollback of change 144776821Gravatar A. Unique TensorFlower2017-01-17
| | | | Change: 144780716
* Migrate to new namespace for Input, Output, etc. in the C++ API.Gravatar A. Unique TensorFlower2017-01-17
| | | | Change: 144776821
* Update C++ API comments to be more Doxygen friendly.Gravatar Skye Wanderman-Milne2017-01-17
| | | | | | | | | | | | This patch: - Updates // comments to ///. I manually reverted some comments that shouldn't be docs (e.g. TODOs), but may have missed some. - Indents code blocks so they get formatted as such in the docs. - Removes /* */ comments from example code since it messes up Doxygen. - Puts a space between {{ and }} since it messes up devsite. - Adds some // START_SKIP_DOXYGEN and // END_SKIP_DOXYGEN comments for functions that aren't part of the public API (incomplete) This will likely require further small fixups, but this gets something to be generated. Change: 144749351
* C++ Gradients:Gravatar A. Unique TensorFlower2016-09-09
| | | | | | *) Adds support for StopGradient. *) Adds Identity gradient function. Change: 132688186
* C++ Gradients: Module to add gradients to a graph.Gravatar A. Unique TensorFlower2016-08-17
Adds a couple unit tests (more unit tests to come, once gradient functions for more ops are added). Change: 130521199