Searched refs:autograph (Results 1 – 25 of 203) sorted by relevance
123456789
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | __init__.py | 40 from tensorflow.python.autograph.operators.conditional_expressions import if_exp 41 from tensorflow.python.autograph.operators.control_flow import for_stmt 42 from tensorflow.python.autograph.operators.control_flow import if_stmt 43 from tensorflow.python.autograph.operators.control_flow import while_stmt 44 from tensorflow.python.autograph.operators.data_structures import list_append 45 from tensorflow.python.autograph.operators.data_structures import list_pop 46 from tensorflow.python.autograph.operators.data_structures import list_stack 47 from tensorflow.python.autograph.operators.data_structures import ListPopOpts 48 from tensorflow.python.autograph.operators.data_structures import ListStackOpts 49 from tensorflow.python.autograph.operators.data_structures import new_list [all …]
|
/external/tensorflow/tensorflow/python/autograph/ |
D | __init__.py | 35 from tensorflow.python.autograph import operators 36 from tensorflow.python.autograph import utils 37 from tensorflow.python.autograph.core.converter import ConversionOptions 38 from tensorflow.python.autograph.core.converter import Feature 39 from tensorflow.python.autograph.impl.api import AutoGraphError 40 from tensorflow.python.autograph.impl.api import convert 41 from tensorflow.python.autograph.impl.api import converted_call 42 from tensorflow.python.autograph.impl.api import do_not_convert 43 from tensorflow.python.autograph.impl.api import StackTraceMapper 44 from tensorflow.python.autograph.impl.api import to_code [all …]
|
D | BUILD | 20 name = "autograph", 28 "//tensorflow/python/autograph/core", 29 "//tensorflow/python/autograph/impl", 30 "//tensorflow/python/autograph/lang", 31 "//tensorflow/python/autograph/operators", 32 "//tensorflow/python/autograph/utils",
|
D | CONTRIBUTING.md | 8 `tensorflow/contrib/autograph` to `tensorflow/python/autograph`. The move 10 `tensorflow.contrib.autograph` until `tensorflow.contrib` is retired. 52 //tensorflow/contrib/autograph/... 65 autograph [style=filled]; 72 autograph -> impl 73 autograph -> lang 86 `autograph` is the sole user-visible module. 90 …* `autograph`: the main module imported by the user and by the generated code; only contains decla… 102 …out an implementation of `impl` and `converters` that is independent of autograph, into a general …
|
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | BUILD | 42 "//tensorflow/python/autograph/core", 43 "//tensorflow/python/autograph/lang", 44 "//tensorflow/python/autograph/pyct", 45 "//tensorflow/python/autograph/pyct/static_analysis", 46 "//tensorflow/python/autograph/utils", 59 "//tensorflow/python/autograph/core:test_lib", 71 "//tensorflow/python/autograph/core:test_lib", 83 "//tensorflow/python/autograph/core:test_lib", 95 "//tensorflow/python/autograph/core:test_lib", 107 "//tensorflow/python/autograph/core:test_lib", [all …]
|
D | functions.py | 23 from tensorflow.python.autograph.core import converter 24 from tensorflow.python.autograph.pyct import anno 25 from tensorflow.python.autograph.pyct import parser 26 from tensorflow.python.autograph.pyct import qual_names 27 from tensorflow.python.autograph.pyct import templates 28 from tensorflow.python.autograph.pyct.static_analysis import activity 29 from tensorflow.python.autograph.pyct.static_analysis import annos
|
D | functions_test.py | 21 from tensorflow.python.autograph.converters import functions 22 from tensorflow.python.autograph.converters import return_statements 23 from tensorflow.python.autograph.core import ag_ctx 24 from tensorflow.python.autograph.core import converter 25 from tensorflow.python.autograph.core import converter_testing 26 from tensorflow.python.autograph.impl import api
|
D | asserts_test.py | 21 from tensorflow.python.autograph.converters import asserts 22 from tensorflow.python.autograph.converters import functions 23 from tensorflow.python.autograph.converters import return_statements 24 from tensorflow.python.autograph.core import converter_testing
|
D | slices_test.py | 21 from tensorflow.python.autograph.converters import directives as directives_converter 22 from tensorflow.python.autograph.converters import slices 23 from tensorflow.python.autograph.core import converter_testing 24 from tensorflow.python.autograph.lang import directives
|
D | lists_test.py | 21 from tensorflow.python.autograph.converters import directives as directives_converter 22 from tensorflow.python.autograph.converters import lists 23 from tensorflow.python.autograph.core import converter_testing 24 from tensorflow.python.autograph.lang import directives 25 from tensorflow.python.autograph.lang import special_functions
|
D | control_flow.py | 23 from tensorflow.python.autograph.core import converter 24 from tensorflow.python.autograph.lang import directives 25 from tensorflow.python.autograph.pyct import anno 26 from tensorflow.python.autograph.pyct import cfg 27 from tensorflow.python.autograph.pyct import origin_info 28 from tensorflow.python.autograph.pyct import parser 29 from tensorflow.python.autograph.pyct import qual_names 30 from tensorflow.python.autograph.pyct import templates 31 from tensorflow.python.autograph.pyct.static_analysis import activity 32 from tensorflow.python.autograph.pyct.static_analysis import annos [all …]
|
D | lists.py | 35 from tensorflow.python.autograph.core import converter 36 from tensorflow.python.autograph.lang import directives 37 from tensorflow.python.autograph.pyct import anno 38 from tensorflow.python.autograph.pyct import parser 39 from tensorflow.python.autograph.pyct import qual_names 40 from tensorflow.python.autograph.pyct import templates 41 from tensorflow.python.autograph.pyct.static_analysis import activity 42 from tensorflow.python.autograph.pyct.static_analysis.annos import NodeAnno
|
D | continue_statements.py | 21 from tensorflow.python.autograph.core import converter 22 from tensorflow.python.autograph.pyct import anno 23 from tensorflow.python.autograph.pyct import qual_names 24 from tensorflow.python.autograph.pyct import templates 25 from tensorflow.python.autograph.pyct.static_analysis import activity 26 from tensorflow.python.autograph.pyct.static_analysis.annos import NodeAnno
|
/external/tensorflow/tensorflow/python/autograph/impl/ |
D | BUILD | 30 "//tensorflow/python/autograph/converters", 31 "//tensorflow/python/autograph/core", 32 "//tensorflow/python/autograph/operators", 33 "//tensorflow/python/autograph/pyct", 34 "//tensorflow/python/autograph/pyct/static_analysis", 35 "//tensorflow/python/autograph/utils", 48 "//tensorflow/python/autograph/core:test_lib", 49 "//tensorflow/python/autograph/utils", 60 "//tensorflow/python/autograph/impl/testing:pybind_for_testing",
|
D | api.py | 31 from tensorflow.python.autograph import operators 32 from tensorflow.python.autograph import utils 33 from tensorflow.python.autograph.converters import asserts 34 from tensorflow.python.autograph.converters import break_statements 35 from tensorflow.python.autograph.converters import call_trees 36 from tensorflow.python.autograph.converters import conditional_expressions 37 from tensorflow.python.autograph.converters import continue_statements 38 from tensorflow.python.autograph.converters import control_flow 39 from tensorflow.python.autograph.converters import directives 40 from tensorflow.python.autograph.converters import functions [all …]
|
D | conversion_test.py | 28 from tensorflow.python.autograph import utils 29 from tensorflow.python.autograph.core import config 30 from tensorflow.python.autograph.core import converter 31 from tensorflow.python.autograph.impl import api 32 from tensorflow.python.autograph.impl import conversion 33 from tensorflow.python.autograph.impl.testing import pybind_for_testing
|
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/ |
D | reaching_fndefs_test.py | 21 from tensorflow.python.autograph.pyct import anno 22 from tensorflow.python.autograph.pyct import cfg 23 from tensorflow.python.autograph.pyct import naming 24 from tensorflow.python.autograph.pyct import parser 25 from tensorflow.python.autograph.pyct import qual_names 26 from tensorflow.python.autograph.pyct import transformer 27 from tensorflow.python.autograph.pyct.static_analysis import activity 28 from tensorflow.python.autograph.pyct.static_analysis import reaching_definitions 29 from tensorflow.python.autograph.pyct.static_analysis import reaching_fndefs
|
D | BUILD | 33 "//tensorflow/python/autograph/pyct", 34 "//tensorflow/python/autograph/utils", 47 "//tensorflow/python/autograph/pyct", 60 "//tensorflow/python/autograph/pyct", 82 "//tensorflow/python/autograph/pyct", 96 "//tensorflow/python/autograph/pyct", 108 "//tensorflow/python/autograph/pyct", 120 "//tensorflow/python/autograph/pyct",
|
/external/tensorflow/tensorflow/python/autograph/core/ |
D | BUILD | 33 "//tensorflow/python/autograph/operators", 34 "//tensorflow/python/autograph/pyct", 35 "//tensorflow/python/autograph/pyct/static_analysis", 36 "//tensorflow/python/autograph/utils", 50 "//tensorflow/python/autograph/lang", 51 "//tensorflow/python/autograph/operators", 52 "//tensorflow/python/autograph/pyct", 53 "//tensorflow/python/autograph/pyct/static_analysis", 54 "//tensorflow/python/autograph/utils",
|
D | converter_test.py | 23 from tensorflow.python.autograph.core import converter 24 from tensorflow.python.autograph.core import converter_testing 25 from tensorflow.python.autograph.pyct import anno 26 from tensorflow.python.autograph.pyct import loader 27 from tensorflow.python.autograph.pyct import parser 28 from tensorflow.python.autograph.pyct import templates
|
/external/tensorflow/tensorflow/python/autograph/utils/ |
D | __init__.py | 21 from tensorflow.python.autograph.utils.context_managers import control_dependency_on_returns 22 from tensorflow.python.autograph.utils.misc import alias_tensors 23 from tensorflow.python.autograph.utils.py_func import wrap_py_func 24 from tensorflow.python.autograph.utils.tensor_list import dynamic_list_append
|
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | intro.md | 16 converted_f = tf.autograph.to_graph(f) 32 converted_f = tf.autograph.to_graph(f) 33 graph_f = tf.function(autograph=False)(converted_f) 71 converted_f = tf.autograph.to_graph(f) 98 unconverted_graph_f = tf.function(f, autograph=False) 99 graph_f = tf.function(f, autograph=True) 129 converted_f = tf.autograph.to_graph(f) 151 converted_f = tf.autograph.to_graph(f) 152 experimental_converted_f = tf.autograph.to_graph( 153 f, experimental_autograph_options=tf.autograph.experimental.Feature.LISTS)
|
D | generated_code.md | 46 converted_f = tf.autograph.to_graph(f) 61 converted_f = tf.autograph.to_graph(f.python_function) 68 `tf.autograph.to_code` is a shortcut to obtain the generated code, and it's 69 equivalent with calling `inspect.getsource(tf.autograph.to_graph(f))`. 71 #### Recording diagnostic information: `tf.autograph.set_verbosity` 77 You can enable logging by calling `tf.autograph.set_verbosity(level)`. The
|
/external/tensorflow/tensorflow/python/autograph/g3doc/ |
D | pyct_tutorial.ipynb | 18 …h.google.com/github/tensorflow/tensorflow/blob/master/tensorflow/python/autograph/g3doc/pyct_tutor… 45 …sorflow/blob/40802bcdb5c8a4379da2145441f51051402bd29b/tensorflow/python/autograph/pyct/transformer… 69 "from tensorflow.python.autograph.pyct import transformer\n", 107 …sorflow/blob/ee7172a929cb0c3d94a094fafc60bbaa175c085d/tensorflow/python/autograph/pyct/transpiler.… 121 "from tensorflow.python.autograph.pyct import transpiler\n", 169 …sorflow/blob/40802bcdb5c8a4379da2145441f51051402bd29b/tensorflow/python/autograph/pyct/anno.py#L11… 206 "from tensorflow.python.autograph.pyct import anno\n", 207 "from tensorflow.python.autograph.pyct import parser\n", 208 "from tensorflow.python.autograph.pyct import qual_names\n", 209 "from tensorflow.python.autograph.pyct.static_analysis import annos\n", [all …]
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | transpiler.py | 27 from tensorflow.python.autograph.pyct import cache 28 from tensorflow.python.autograph.pyct import inspect_utils 29 from tensorflow.python.autograph.pyct import loader 30 from tensorflow.python.autograph.pyct import naming 31 from tensorflow.python.autograph.pyct import origin_info 32 from tensorflow.python.autograph.pyct import parser 33 from tensorflow.python.autograph.pyct import templates 34 from tensorflow.python.autograph.pyct import transformer 35 from tensorflow.python.autograph.utils import ag_logging as logging
|
123456789