aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/autograph
Commit message (Expand)AuthorAge
* Use lambdas when converting ifexps, since they are now supported.Gravatar Dan Moldovan2018-10-10
* Use overloaded operators for the assert statement. This should remove the rel...Gravatar Dan Moldovan2018-10-10
* Enable support for lambda functions in static analyses.Gravatar Dan Moldovan2018-10-09
* Remove the deprecated created and IS_LOCAL abstractions from activity analysis.Gravatar Dan Moldovan2018-10-09
* Improve the control flow conversion for loops by using dataflow analysis to c...Gravatar Dan Moldovan2018-10-09
* Include live-in symbols in liveness analysis. These are required for control ...Gravatar Dan Moldovan2018-10-09
* Allow using more than one converter in the testing harness.Gravatar Dan Moldovan2018-10-08
* Add a utility that allows finding a name for an entity, relative to an existi...Gravatar Dan Moldovan2018-10-08
* Fix regression that caused xrange to be ignored.Gravatar Dan Moldovan2018-10-04
* Allow creating a list from a tensor. Fix a few inconsistencies in the tensor ...Gravatar Dan Moldovan2018-10-02
* Fix the case when an object may have multiple directives with the same annota...Gravatar Dan Moldovan2018-10-02
* Fix typo.Gravatar Dan Moldovan2018-10-01
* Replace the tf.name_scope call with an internal context manager that can cont...Gravatar Dan Moldovan2018-10-01
* Extend support for Index nodes in template expansions.Gravatar Dan Moldovan2018-09-26
* The return value checker should ignore inner functions.Gravatar Dan Moldovan2018-09-26
* Account for cases when the live value of a function is not hashable, in the b...Gravatar Dan Moldovan2018-09-25
* Ensure tf.range has semantics consistent with range, which allows start and e...Gravatar Dan Moldovan2018-09-24
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-24
* Remove the pretty formatting of generated code. The astor library that did th...Gravatar Dan Moldovan2018-09-24
* Rename source_map to create_source_map. Reorganize the tests to be clearer ab...Gravatar Dan Moldovan2018-09-24
* Use weakrefs where absolutely safe to do so, in order to reduce the number of...Gravatar Dan Moldovan2018-09-21
* Include the print function in the list of special functions - its name is not...Gravatar Dan Moldovan2018-09-20
* Replace the OrderedDict with a basic list/dict solution. OrderedDict is probl...Gravatar Dan Moldovan2018-09-20
* Extend template expansion support for arithmetic expressions.Gravatar Dan Moldovan2018-09-18
* Simplify the interface of conversion_call to allow a ConversionOptions object...Gravatar Dan Moldovan2018-09-18
* Raise error on encountering bad indentation during Autograph parsing.Gravatar A. Unique TensorFlower2018-09-17
* Removing unused code comment in AutoGraph error rewriting.Gravatar A. Unique TensorFlower2018-09-17
* README s/tensorflow.contrib/tensorflow.python/.Gravatar A. Unique TensorFlower2018-09-17
* Allow unsupported comparison operators to be passed through and scale back th...Gravatar Dan Moldovan2018-09-13
* Move AutoGraph to core. This CL moves the entirety of the code base, keeping ...Gravatar Dan Moldovan2018-09-11