![]() |
Enables / disables eager execution of tf.function
s.
Aliases:
tf.compat.v1.config.experimental_run_functions_eagerly
tf.compat.v2.config.experimental_run_functions_eagerly
tf.config.experimental_run_functions_eagerly(run_eagerly)
After calling tf.config.experimental_run_functions_eagerly(True)
all
invocations of tf.function will run eagerly instead of running through a graph
function.
This can be useful for debugging or profiling.
Similarly, calling tf.config.experimental_run_functions_eagerly(False)
will
revert the behavior of all functions to graph functions.
Args:
run_eagerly
: Boolean. Whether to run functions eagerly.