aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/graph/while_context.h
Commit message (Collapse)AuthorAge
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Fixed Typos (#18806)Gravatar Nicholas Nadeau, P.Eng., AVS2018-05-03
| | | * fixed typos
* Add WhileContext class and add plumbing for creating them.Gravatar Skye Wanderman-Milne2017-09-13
This change introduces WhileContext, which stores information about a while loop and will be used in future changes to generate while loop gradient graphs. Exit nodes in a while loop now have a pointer to their associated WhileContext. This will be used to retrieve the context for a given loop. This change adds an optional parameter to BuildWhileLoop() to create a WhileContext for the while loop (currently this is always true, but gradients will generate while loops without associated contexts). This change also adds a as-yet-unused option to BuildWhileLoop() to return the predicate output. PiperOrigin-RevId: 168562303