tf.config.experimental_run_functions_eagerly

Enables / disables eager execution of tf.functions.

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.config.experimental_run_functions_eagerly, `tf.compat.v2.config.experimental_run_functions_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.

run_eagerly Boolean. Whether to run functions eagerly.