Home
last modified time | relevance | path

Searched refs:autograph (Results 1 – 25 of 164) sorted by relevance

1234567

/external/tensorflow/tensorflow/python/autograph/operators/
D__init__.py40 from tensorflow.python.autograph.operators.control_flow import for_stmt
41 from tensorflow.python.autograph.operators.control_flow import if_stmt
42 from tensorflow.python.autograph.operators.control_flow import while_stmt
43 from tensorflow.python.autograph.operators.data_structures import list_append
44 from tensorflow.python.autograph.operators.data_structures import list_pop
45 from tensorflow.python.autograph.operators.data_structures import list_stack
46 from tensorflow.python.autograph.operators.data_structures import ListPopOpts
47 from tensorflow.python.autograph.operators.data_structures import ListStackOpts
48 from tensorflow.python.autograph.operators.data_structures import new_list
49 from tensorflow.python.autograph.operators.exceptions import assert_stmt
[all …]
/external/tensorflow/tensorflow/python/autograph/
D__init__.py35 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.core.errors import GraphConstructionError
40 from tensorflow.python.autograph.core.errors import improved_errors
41 from tensorflow.python.autograph.core.errors import TfRuntimeError
42 from tensorflow.python.autograph.impl.api import convert
43 from tensorflow.python.autograph.impl.api import converted_call
44 from tensorflow.python.autograph.impl.api import do_not_convert
[all …]
DBUILD18 name = "autograph",
26 "//tensorflow/python/autograph/impl",
27 "//tensorflow/python/autograph/lang",
28 "//tensorflow/python/autograph/pyct",
29 "//tensorflow/python/autograph/utils",
DCONTRIBUTING.md8 `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 …
DREADME.md44 converted_f = autograph.to_graph(f)
65 Then import the `autograph` module from `tf.contrib`:
68 from tensorflow.python import autograph as ag
75 …* [TensorFlow blog post](https://medium.com/tensorflow/autograph-converts-python-into-tensorflow-g…
79 …/colab.research.google.com/github/tensorflow/models/blob/master/samples/core/guide/autograph.ipynb)
80 ….google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/autograph/examples/noteboo…
81 ….google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/autograph/examples/noteboo…
82 ….google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/autograph/examples/noteboo…
83 ….google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/autograph/examples/noteboo…
84 ….google.com/github/tensorflow/tensorflow/blob/master/tensorflow/contrib/autograph/examples/noteboo…
[all …]
/external/tensorflow/tensorflow/python/autograph/converters/
DBUILD42 "//tensorflow/python/autograph/core",
43 "//tensorflow/python/autograph/lang",
44 "//tensorflow/python/autograph/pyct",
45 "//tensorflow/python/autograph/pyct/static_analysis",
57 "//tensorflow/python/autograph/core:test_lib",
68 "//tensorflow/python/autograph/core:test_lib",
79 "//tensorflow/python/autograph/core:test_lib",
91 "//tensorflow/python/autograph/core:test_lib",
103 "//tensorflow/python/autograph/core:test_lib",
104 "//tensorflow/python/autograph/impl",
[all …]
Ddirectives_test.py21 from tensorflow.python.autograph.converters import directives as directives_converter
22 from tensorflow.python.autograph.core import converter_testing
23 from tensorflow.python.autograph.core.converter import AgAnno
24 from tensorflow.python.autograph.lang import directives
25 from tensorflow.python.autograph.pyct import anno
26 from tensorflow.python.autograph.pyct import parser
Dslices_test.py21 from tensorflow.python.autograph.converters import slices
22 from tensorflow.python.autograph.core import converter_testing
23 from tensorflow.python.autograph.lang import directives
24 from tensorflow.python.autograph.pyct import anno
25 from tensorflow.python.autograph.pyct import parser
Derror_handlers_test.py23 from tensorflow.python.autograph.converters import error_handlers
24 from tensorflow.python.autograph.core import converter_testing
25 from tensorflow.python.autograph.core import errors
26 from tensorflow.python.autograph.pyct import anno
Dlists_test.py21 from tensorflow.python.autograph.converters import lists
22 from tensorflow.python.autograph.core import converter_testing
23 from tensorflow.python.autograph.lang import directives
24 from tensorflow.python.autograph.lang import special_functions
25 from tensorflow.python.autograph.pyct import anno
26 from tensorflow.python.autograph.pyct import parser
Dbuiltin_functions.py23 from tensorflow.python.autograph.core import converter
24 from tensorflow.python.autograph.operators import py_builtins
25 from tensorflow.python.autograph.pyct import anno
26 from tensorflow.python.autograph.pyct import templates
Dside_effect_guards.py39 from tensorflow.python.autograph.core import converter
40 from tensorflow.python.autograph.pyct import anno
41 from tensorflow.python.autograph.pyct import ast_util
42 from tensorflow.python.autograph.pyct import qual_names
43 from tensorflow.python.autograph.pyct import templates
44 from tensorflow.python.autograph.pyct.static_analysis.annos import NodeAnno
Dcall_trees.py27 from tensorflow.python.autograph.core import converter
28 from tensorflow.python.autograph.pyct import anno
29 from tensorflow.python.autograph.pyct import ast_util
30 from tensorflow.python.autograph.pyct import parser
31 from tensorflow.python.autograph.pyct import templates
/external/tensorflow/tensorflow/python/autograph/impl/
Dconversion.py27 from tensorflow.python.autograph import operators
28 from tensorflow.python.autograph import utils
29 from tensorflow.python.autograph.converters import arg_defaults
30 from tensorflow.python.autograph.converters import asserts
31 from tensorflow.python.autograph.converters import break_statements
32 from tensorflow.python.autograph.converters import builtin_functions
33 from tensorflow.python.autograph.converters import call_trees
34 from tensorflow.python.autograph.converters import conditional_expressions
35 from tensorflow.python.autograph.converters import continue_statements
36 from tensorflow.python.autograph.converters import control_flow
[all …]
DBUILD28 "//tensorflow/python/autograph/converters",
29 "//tensorflow/python/autograph/core",
30 "//tensorflow/python/autograph/operators",
31 "//tensorflow/python/autograph/pyct",
32 "//tensorflow/python/autograph/pyct/static_analysis",
33 "//tensorflow/python/autograph/utils",
47 "//tensorflow/python/autograph/utils",
/external/tensorflow/tensorflow/python/autograph/core/
Dconverter_testing.py27 from tensorflow.python.autograph import operators
28 from tensorflow.python.autograph import utils
29 from tensorflow.python.autograph.core import converter
30 from tensorflow.python.autograph.core import errors
31 from tensorflow.python.autograph.core import function_wrapping
32 from tensorflow.python.autograph.core import naming
33 from tensorflow.python.autograph.lang import special_functions
34 from tensorflow.python.autograph.pyct import compiler
35 from tensorflow.python.autograph.pyct import origin_info
36 from tensorflow.python.autograph.pyct import parser
[all …]
Dconverter.py68 from tensorflow.python.autograph.core import config
69 from tensorflow.python.autograph.pyct import anno
70 from tensorflow.python.autograph.pyct import ast_util
71 from tensorflow.python.autograph.pyct import cfg
72 from tensorflow.python.autograph.pyct import compiler
73 from tensorflow.python.autograph.pyct import parser
74 from tensorflow.python.autograph.pyct import qual_names
75 from tensorflow.python.autograph.pyct import templates
76 from tensorflow.python.autograph.pyct import transformer
77 from tensorflow.python.autograph.pyct.static_analysis import activity
[all …]
DBUILD31 "//tensorflow/python/autograph/pyct",
32 "//tensorflow/python/autograph/pyct/static_analysis",
33 "//tensorflow/python/autograph/utils",
47 "//tensorflow/python/autograph/operators",
48 "//tensorflow/python/autograph/pyct",
49 "//tensorflow/python/autograph/pyct/static_analysis",
50 "//tensorflow/python/autograph/utils",
Dconverter_test.py21 from tensorflow.python.autograph.core import converter
22 from tensorflow.python.autograph.core import converter_testing
23 from tensorflow.python.autograph.pyct import anno
24 from tensorflow.python.autograph.pyct import compiler
25 from tensorflow.python.autograph.pyct import parser
26 from tensorflow.python.autograph.pyct import templates
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
DBUILD31 "//tensorflow/python/autograph/pyct",
32 "//tensorflow/python/autograph/utils",
44 "//tensorflow/python/autograph/pyct",
56 "//tensorflow/python/autograph/pyct",
67 "//tensorflow/python/autograph/pyct",
78 "//tensorflow/python/autograph/pyct",
89 "//tensorflow/python/autograph/pyct",
90 "//tensorflow/python/autograph/utils",
Dlive_values_test.py23 from tensorflow.python.autograph.pyct import anno
24 from tensorflow.python.autograph.pyct import cfg
25 from tensorflow.python.autograph.pyct import parser
26 from tensorflow.python.autograph.pyct import qual_names
27 from tensorflow.python.autograph.pyct import transformer
28 from tensorflow.python.autograph.pyct.static_analysis import activity
29 from tensorflow.python.autograph.pyct.static_analysis import live_values
30 from tensorflow.python.autograph.pyct.static_analysis import reaching_definitions
31 from tensorflow.python.autograph.pyct.static_analysis import type_info
Dtype_info_test.py21 from tensorflow.python.autograph.pyct import anno
22 from tensorflow.python.autograph.pyct import cfg
23 from tensorflow.python.autograph.pyct import parser
24 from tensorflow.python.autograph.pyct import qual_names
25 from tensorflow.python.autograph.pyct import transformer
26 from tensorflow.python.autograph.pyct.static_analysis import activity
27 from tensorflow.python.autograph.pyct.static_analysis import live_values
28 from tensorflow.python.autograph.pyct.static_analysis import reaching_definitions
29 from tensorflow.python.autograph.pyct.static_analysis import type_info
/external/tensorflow/tensorflow/python/autograph/utils/
D__init__.py21 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
25 from tensorflow.python.autograph.utils.testing import fake_tf
26 from tensorflow.python.autograph.utils.type_check import is_tensor
/external/tensorflow/tensorflow/python/autograph/docs/
Dpyfunc_dtypes.md7 `@autograph.do_not_convert(run_as=autograph.RunMode.PY_FUNC)`, you have two
22 autograph.util.wrap_py_func(f, return_dtypes=[tf.float32])
31 autograph.util.wrap_py_func(
32 f, return_dtypes=[autograph.utils.py_func.MatchDType(0)])
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/
Dworkshop.ipynb37 "from tensorflow.contrib import autograph\n",
51autograph/README.md) helps you write complicated graph code using just plain Python -- behind the …
120 "tf_g = autograph.to_graph(g)\n",
131 "print(autograph.to_code(g))"
175 "tf_f = autograph.to_graph(f)\n",
180 "print(autograph.to_code(f))"
214 "tf_f = autograph.to_graph(f)\n",
255 "tf_f = autograph.to_graph(f)\n",
289 " autograph.set_element_type(z, tf.int32)\n",
294 " return autograph.stack(z)\n",
[all …]

1234567