3RNN/Lib/site-packages/tensorflow/python/compat/v2_compat.py
2024-05-26 19:49:15 +02:00

106 lines
4.3 KiB
Python

# Copyright 2018 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Switching v2 features on and off."""
from tensorflow.python import tf2
from tensorflow.python.eager import monitoring
from tensorflow.python.framework import ops
from tensorflow.python.framework import registry
from tensorflow.python.framework import tensor
from tensorflow.python.framework import tensor_shape
from tensorflow.python.ops import control_flow_v2_toggles
from tensorflow.python.ops import resource_variables_toggle
from tensorflow.python.util.tf_export import tf_export
# Metrics to track the status of v2_behavior
_v2_behavior_usage_gauge = monitoring.BoolGauge(
"/tensorflow/version/v2_behavior",
"whether v2_behavior is enabled or disabled", "status")
_DATA_V2_CALLBACKS = registry.Registry("data_v2_callbacks")
def register_data_v2_callback(data_v2_func):
_DATA_V2_CALLBACKS.register(data_v2_func, data_v2_func.__module__)
@tf_export(v1=["enable_v2_behavior"])
def enable_v2_behavior():
"""Enables TensorFlow 2.x behaviors.
This function can be called at the beginning of the program (before `Tensors`,
`Graphs` or other structures have been created, and before devices have been
initialized. It switches all global behaviors that are different between
TensorFlow 1.x and 2.x to behave as intended for 2.x.
This function is called in the main TensorFlow `__init__.py` file, user should
not need to call it, except during complex migrations.
@compatibility(TF2)
This function is not necessary if you are using TF2. V2 behavior is enabled by
default.
@end_compatibility
"""
_v2_behavior_usage_gauge.get_cell("enable").set(True)
# TF2 behavior is enabled if either 1) enable_v2_behavior() is called or
# 2) the TF2_BEHAVIOR=1 environment variable is set. In the latter case,
# the modules below independently check if tf2.enabled().
tf2.enable()
ops.enable_eager_execution()
tensor_shape.enable_v2_tensorshape() # Also switched by tf2
resource_variables_toggle.enable_resource_variables()
tensor.enable_tensor_equality()
# Enables TensorArrayV2 and control flow V2.
control_flow_v2_toggles.enable_control_flow_v2()
# Make sure internal uses of tf.data symbols map to V2 versions.
for v2_enabler_name in _DATA_V2_CALLBACKS.list():
v2_enabler = _DATA_V2_CALLBACKS.lookup(v2_enabler_name)
v2_enabler()
@tf_export(v1=["disable_v2_behavior"])
def disable_v2_behavior():
"""Disables TensorFlow 2.x behaviors.
This function can be called at the beginning of the program (before `Tensors`,
`Graphs` or other structures have been created, and before devices have been
initialized. It switches all global behaviors that are different between
TensorFlow 1.x and 2.x to behave as intended for 1.x.
User can call this function to disable 2.x behavior during complex migrations.
@compatibility(TF2)
Using this function indicates that your software is not compatible
with eager execution and `tf.function` in TF2.
To migrate to TF2, rewrite your code to be compatible with eager execution.
Please refer to the [migration guide]
(https://www.tensorflow.org/guide/migrate) for additional resource on the
topic.
@end_compatibility
"""
_v2_behavior_usage_gauge.get_cell("disable").set(True)
tf2.disable()
ops.disable_eager_execution()
tensor_shape.disable_v2_tensorshape() # Also switched by tf2
resource_variables_toggle.disable_resource_variables()
tensor.disable_tensor_equality()
# Disables TensorArrayV2 and control flow V2.
control_flow_v2_toggles.disable_control_flow_v2()
# Make sure internal uses of tf.data symbols map to V1 versions.
for v2_disabler_name in _DATA_V2_CALLBACKS.list():
v2_disabler = _DATA_V2_CALLBACKS.lookup(v2_disabler_name)
v2_disabler()