.. |
__init__.py
|
Uniformize the handling of undefined simple and composite names in control flow.
|
2020-05-27 14:23:17 -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 |
conditional_expressions_test.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 |
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 |
control_flow_deprecated_py2.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 |
control_flow_test.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 |
control_flow.py
|
Add a workaround for slowness of tf.while_loop in the default executor when maximum_iterations is set. Fixes #40517.
|
2020-06-22 16:36:29 -07:00 |
data_structures_test.py
|
Enable tests blocked by b/117943489
|
2020-05-11 18:13:41 -07:00 |
data_structures.py
|
Allow creating a list from a tensor. Fix a few inconsistencies in the tensor list constructors.
|
2018-10-02 12:24:39 -07:00 |
dispatch_context.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 |
exceptions_test.py
|
Add @run_deprecated_v1 annotation to tests failing in v2
|
2018-11-29 15:43:25 -08:00 |
exceptions.py
|
Use overloaded operators for the assert statement. This should remove the reliance on importing tensorflow in the generated code.
|
2018-10-10 07:42:44 -07:00 |
logical_test.py
|
Add @run_deprecated_v1 annotation to tests failing in v2
|
2018-11-29 15:43:25 -08:00 |
logical.py
|
Reactivate logical operators: not, and, or, which aren't supported by Python's operator overloading. Move the equality operator under a new experimental feature which will be eventually deprecated.
|
2019-05-18 10:02:48 -07:00 |
py_builtins_py3_test.py
|
Use the function context created during conversion to identify the correct frame for calling super and eval . Fixes #29191.
|
2019-08-01 10:30:13 -07:00 |
py_builtins_test.py
|
Merge pull request #38716 from yongtang:audograph-len-dataset
|
2020-04-23 09:29:05 -07:00 |
py_builtins.py
|
Merge pull request #38716 from yongtang:audograph-len-dataset
|
2020-04-23 09:29:05 -07:00 |
slices_test.py
|
Replace a few calls of Session run with evaluate
|
2018-11-27 10:09:00 -08:00 |
slices.py
|
Add support for tensor_scatter_update (experimental).
|
2019-05-09 10:07:34 -07:00 |
variables_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 |
variables.py
|
Uniformize the handling of undefined simple and composite names in control flow.
|
2020-05-27 14:23:17 -07:00 |