STT-tensorflow/tensorflow/python/autograph/converters
Dan Moldovan 1c1d4b619a Uniformize the handling of undefined simple and composite names in control flow.
PiperOrigin-RevId: 313461038
Change-Id: Ic70f11291dfa6da52073ec4cacecda883a4d126c
2020-05-27 14:23:17 -07:00
..
__init__.py Move AutoGraph to core. This CL moves the entirety of the code base, keeping the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. 2018-09-11 16:32:19 -07:00
asserts_test.py More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return". 2020-05-13 15:08:40 -07:00
asserts.py Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably. 2020-05-02 05:17:08 -07:00
break_statements_test.py Preserve the directives annotation while lowering break statements. 2020-02-18 12:05:43 -08:00
break_statements.py Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably. 2020-05-02 05:17:08 -07:00
BUILD Use the nonlocal mechanism for if statements. This is the same mechanism used by for and while loops and it allows reusing much of the code. 2020-05-19 15:06:45 -07:00
call_trees_test.py Internal cleanup: consolidate the function transformations in a single file, and name it accordingly. 2020-04-05 06:54:46 -07:00
call_trees.py Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably. 2020-05-02 05:17:08 -07:00
conditional_expressions_test.py Move AutoGraph to core. This CL moves the entirety of the code base, keeping the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. 2018-09-11 16:32:19 -07:00
conditional_expressions.py Use the nonlocal mechanism for if statements. This is the same mechanism used by for and while loops and it allows reusing much of the code. 2020-05-19 15:06:45 -07:00
continue_statements_test.py Autograph: Fix chained function conversion 2019-07-23 14:34:45 -07:00
continue_statements.py Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably. 2020-05-02 05:17:08 -07:00
control_flow_deprecated_py2.py Fix liveness analysis for variables closed over by functions. Previously, these variables were only live at the closing function's point of definition. After this change, these variables are live at every statement that may be reached by this function definition. This is more consistent with Python's late binding mechanism. 2020-05-07 04:41:39 -07:00
control_flow_test.py Uniformize the handling of undefined simple and composite names in control flow. 2020-05-27 14:23:17 -07:00
control_flow.py Uniformize the handling of undefined simple and composite names in control flow. 2020-05-27 14:23:17 -07:00
directives_test.py Upgrade to gast 0.3.2. 2020-01-10 15:09:32 -08:00
directives.py Require statement directives like set_loop_options to be the first statement in their respective block. 2019-12-12 06:20:08 -08:00
functions_test.py More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return". 2020-05-13 15:08:40 -07:00
functions.py More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return". 2020-05-13 15:08:40 -07:00
list_comprehensions_test.py Move AutoGraph to core. This CL moves the entirety of the code base, keeping the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. 2018-09-11 16:32:19 -07:00
list_comprehensions.py Move AutoGraph to core. This CL moves the entirety of the code base, keeping the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. 2018-09-11 16:32:19 -07:00
lists_test.py Autograph: Fix chained function conversion 2019-07-23 14:34:45 -07:00
lists.py Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably. 2020-05-02 05:17:08 -07:00
logical_expressions_test.py Add all unary operations to list of autograph-supported ops. 2019-01-03 06:56:10 -08:00
logical_expressions.py Internal cleanup: Move the bulk of the source code transformation infrastructure into the generic pyct module. 2020-04-06 15:51:41 -07:00
loop_integration_test.py Merge pull request #37813 from zhuzilin:autograph-loop-else-dev 2020-04-02 06:03:19 -07:00
return_statements_test.py More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return". 2020-05-13 15:08:40 -07:00
return_statements.py More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return". 2020-05-13 15:08:40 -07:00
slices_test.py Autograph: Fix chained function conversion 2019-07-23 14:34:45 -07:00
slices.py Move AutoGraph to core. This CL moves the entirety of the code base, keeping the frontend autograph module in contrib for backward compatibility. Certain files, like notebooks and the readme file may be referenced from the outside, so a copy of those is kept as well. In addition, the notebooks subdirectory of examples is also kept in contrib because the extension the build file relies on is not available in the PIP package. 2018-09-11 16:32:19 -07:00
variables_test.py Rewrite del to treat undefinedness in a consistent manner. 2020-05-23 20:33:54 -07:00
variables.py Rewrite del to treat undefinedness in a consistent manner. 2020-05-23 20:33:54 -07:00