aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/autograph
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/autograph')
-rw-r--r--tensorflow/contrib/autograph/converters/call_trees.py2
-rw-r--r--tensorflow/contrib/autograph/converters/call_trees_test.py2
-rw-r--r--tensorflow/contrib/autograph/converters/decorators_test.py2
-rw-r--r--tensorflow/contrib/autograph/impl/api.py4
-rw-r--r--tensorflow/contrib/autograph/impl/conversion.py2
-rw-r--r--tensorflow/contrib/autograph/pyct/static_analysis/activity.py6
-rw-r--r--tensorflow/contrib/autograph/pyct/static_analysis/activity_test.py2
-rw-r--r--tensorflow/contrib/autograph/pyct/static_analysis/annos.py8
-rw-r--r--tensorflow/contrib/autograph/utils/builtins.py2
9 files changed, 15 insertions, 15 deletions
diff --git a/tensorflow/contrib/autograph/converters/call_trees.py b/tensorflow/contrib/autograph/converters/call_trees.py
index 2e5590b46c..554f0471d4 100644
--- a/tensorflow/contrib/autograph/converters/call_trees.py
+++ b/tensorflow/contrib/autograph/converters/call_trees.py
@@ -146,7 +146,7 @@ class CallTreeTransformer(transformer.Base):
# Inspect the target function decorators. If any include a @convert
# or @graph_ready annotation, then they must be called as they are.
# TODO(mdan): This may be quite heavy.
- # To parse and re-analize each function for every call site could be quite
+ # To parse and re-analyze each function for every call site could be quite
# wasteful. Maybe we could cache the parsed AST?
try:
target_node, _ = parser.parse_entity(target_entity)
diff --git a/tensorflow/contrib/autograph/converters/call_trees_test.py b/tensorflow/contrib/autograph/converters/call_trees_test.py
index c666dcb73b..303dd54a4e 100644
--- a/tensorflow/contrib/autograph/converters/call_trees_test.py
+++ b/tensorflow/contrib/autograph/converters/call_trees_test.py
@@ -34,7 +34,7 @@ class CallTreesTest(converter_test_base.TestCase):
def test_basic(self):
def test_fn_1(_):
- raise ValueError('This should not be called in the compiled verison.')
+ raise ValueError('This should not be called in the compiled version.')
def renamed_test_fn_1(a):
return a + 1
diff --git a/tensorflow/contrib/autograph/converters/decorators_test.py b/tensorflow/contrib/autograph/converters/decorators_test.py
index e67ab1cd6a..9c01f68912 100644
--- a/tensorflow/contrib/autograph/converters/decorators_test.py
+++ b/tensorflow/contrib/autograph/converters/decorators_test.py
@@ -28,7 +28,7 @@ from tensorflow.python.platform import test
# The Python parser only briefly captures decorators into the AST.
# The interpreter desugars them on load, and the decorated function loses any
-# trace of the decorator (which is notmally what you would expect, since
+# trace of the decorator (which is normally what you would expect, since
# they are meant to be transparent).
# However, decorators are still visible when you analyze the function
# from inside a decorator, before it was applied - as is the case
diff --git a/tensorflow/contrib/autograph/impl/api.py b/tensorflow/contrib/autograph/impl/api.py
index d874ef15c9..24f87b2c14 100644
--- a/tensorflow/contrib/autograph/impl/api.py
+++ b/tensorflow/contrib/autograph/impl/api.py
@@ -49,7 +49,7 @@ def convert(recursive=False, verbose=False, arg_types=None):
function is called. This means the parameter values are known at compilation.
Args:
- recursive: Whether to recusrively convert any functions that the decorator
+ recursive: Whether to recursively convert any functions that the decorator
function may call.
verbose: Whether to output the compiled code in the logs.
arg_types: See to_graph.
@@ -215,7 +215,7 @@ def to_graph(e,
Args:
e: A Python entity.
- recursive: Whether to recusrively convert any functions that the decorator
+ recursive: Whether to recursively convert any functions that the decorator
function may call.
verbose: Whether to output the compiled code in the logs.
arg_values: A dict containing value hints for symbols like function
diff --git a/tensorflow/contrib/autograph/impl/conversion.py b/tensorflow/contrib/autograph/impl/conversion.py
index e7230a5f45..55a30dc127 100644
--- a/tensorflow/contrib/autograph/impl/conversion.py
+++ b/tensorflow/contrib/autograph/impl/conversion.py
@@ -61,7 +61,7 @@ class ConversionMap(object):
This object is mutable, and is updated as functions are converted.
Attributes:
- recursive: Whether to recusrively convert any functions that the decorator
+ recursive: Whether to recursively convert any functions that the decorator
function may call.
nocompile_decorators: tuple of decorator functions that toggle compilation
off.
diff --git a/tensorflow/contrib/autograph/pyct/static_analysis/activity.py b/tensorflow/contrib/autograph/pyct/static_analysis/activity.py
index b81f5c7f87..2c14c2c8c2 100644
--- a/tensorflow/contrib/autograph/pyct/static_analysis/activity.py
+++ b/tensorflow/contrib/autograph/pyct/static_analysis/activity.py
@@ -162,11 +162,11 @@ class Scope(object):
self.parent.mark_returned(name)
-class ActivityAnalizer(transformer.Base):
+class ActivityAnalyzer(transformer.Base):
"""Annotates nodes with local scope information. See Scope."""
def __init__(self, context, parent_scope):
- super(ActivityAnalizer, self).__init__(context)
+ super(ActivityAnalyzer, self).__init__(context)
self.scope = Scope(parent_scope)
self._in_return_statement = False
@@ -356,4 +356,4 @@ class ActivityAnalizer(transformer.Base):
def resolve(node, context, parent_scope=None):
- return ActivityAnalizer(context, parent_scope).visit(node)
+ return ActivityAnalyzer(context, parent_scope).visit(node)
diff --git a/tensorflow/contrib/autograph/pyct/static_analysis/activity_test.py b/tensorflow/contrib/autograph/pyct/static_analysis/activity_test.py
index d1c4a94b14..ef79a295bf 100644
--- a/tensorflow/contrib/autograph/pyct/static_analysis/activity_test.py
+++ b/tensorflow/contrib/autograph/pyct/static_analysis/activity_test.py
@@ -108,7 +108,7 @@ class ScopeTest(test.TestCase):
self.assertFalse(QN('a') in child.referenced)
-class ActivityAnalizerTest(test.TestCase):
+class ActivityAnalyzerTest(test.TestCase):
def _parse_and_analyze(self, test_fn):
node, source = parser.parse_entity(test_fn)
diff --git a/tensorflow/contrib/autograph/pyct/static_analysis/annos.py b/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
index d6d9f7e1a6..b929b35b79 100644
--- a/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
+++ b/tensorflow/contrib/autograph/pyct/static_analysis/annos.py
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
-"""Annotations used by the static analizer."""
+"""Annotations used by the static analyzer."""
from __future__ import absolute_import
from __future__ import division
@@ -28,15 +28,15 @@ class NoValue(Enum):
class NodeAnno(NoValue):
- """Additionnal annotations used by the static analyzer.
+ """Additional annotations used by the static analyzer.
These are in addition to the basic annotations declared in anno.py.
"""
# Symbols
# These flags are boolean.
- IS_LOCAL = 'Symbol is local to the function scope being analized.'
- IS_PARAM = 'Symbol is a parameter to the function being analized.'
+ IS_LOCAL = 'Symbol is local to the function scope being analyzed.'
+ IS_PARAM = 'Symbol is a parameter to the function being analyzed.'
IS_MODIFIED_SINCE_ENTRY = (
'Symbol has been explicitly replaced in the current function scope.')
diff --git a/tensorflow/contrib/autograph/utils/builtins.py b/tensorflow/contrib/autograph/utils/builtins.py
index dfc3c86a3d..211e8eaee9 100644
--- a/tensorflow/contrib/autograph/utils/builtins.py
+++ b/tensorflow/contrib/autograph/utils/builtins.py
@@ -77,7 +77,7 @@ def is_tf_print_compatible(value):
def dynamic_print(*values):
- """Implementartion of print using dynamic dispatch.
+ """Implementation of print using dynamic dispatch.
The function attempts to use tf.Print if all the values are compatible.
Otherwise, it will fall back to py_func.