启用/禁用 tf.function
的即刻执行。
用法
tf.config.run_functions_eagerly(
run_eagerly
)
参数
-
run_eagerly
布尔值。是否即刻地运行函数。
调用tf.config.run_functions_eagerly(True)
将使tf.function
的所有调用立即运行,而不是作为跟踪图函数运行。
这对于调试很有用。
def my_func(a):
print("Python side effect")
return a + a
a_fn = tf.function(my_func)
# A side effect the first time the function is traced
a_fn(tf.constant(1))
Python side effect
<tf.Tensor:shape=(), dtype=int32, numpy=2>
# No further side effect, as the traced function is called
a_fn(tf.constant(2))
<tf.Tensor:shape=(), dtype=int32, numpy=4>
# Now, switch to eager running
tf.config.run_functions_eagerly(True)
# Side effect, as the function is called directly
a_fn(tf.constant(2))
Python side effect
<tf.Tensor:shape=(), dtype=int32, numpy=4>
# Turn this back off
tf.config.run_functions_eagerly(False)
注意:此标志对作为参数传递给 tf.data 转换的函数没有影响。 tf.data 函数永远不会即刻地执行,并且始终作为已编译的 Tensorflow Graph 执行。
相关用法
- Python tf.config.list_logical_devices用法及代码示例
- Python tf.config.experimental.get_memory_usage用法及代码示例
- Python tf.config.list_physical_devices用法及代码示例
- Python tf.config.get_logical_device_configuration用法及代码示例
- Python tf.config.experimental.get_memory_info用法及代码示例
- Python tf.config.experimental.enable_tensor_float_32_execution用法及代码示例
- Python tf.config.experimental_connect_to_cluster用法及代码示例
- Python tf.config.experimental.set_memory_growth用法及代码示例
- Python tf.config.experimental_connect_to_host用法及代码示例
- Python tf.config.set_visible_devices用法及代码示例
- Python tf.config.set_logical_device_configuration用法及代码示例
- Python tf.config.experimental.enable_op_determinism用法及代码示例
- Python tf.config.get_visible_devices用法及代码示例
- Python tf.config.experimental.get_device_details用法及代码示例
- Python tf.config.experimental.ClusterDeviceFilters用法及代码示例
- Python tf.config.experimental.reset_memory_stats用法及代码示例
- Python tf.config.experimental.get_memory_growth用法及代码示例
- Python tf.concat用法及代码示例
- Python tf.convert_to_tensor用法及代码示例
- Python tf.constant_initializer.from_config用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.config.run_functions_eagerly。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。