Missing Profile Tab in TensorBoard for TensorFlow Experiment

Hi TensorFlow team,

I am running TensorFlow callbacks to fetch trace events similar to the following from PyTorch:

“ph”: “X”, “cat”: “cpu_op”, “name”: “autograd::engine::evaluate_function: DivBackward0”, “pid”: 2323, “tid”: 2779, “ts”: 1722015915530495, “dur”: 287

However, the “Profile” tab is no longer available in TensorBoard for my experiment. Could you provide guidance on how to enable it or suggest any troubleshooting steps?

Thank you!

Hi @rushikesh_bhadane, By default the profiling is disabled you need to pass value to the profile_batch argument while defining the tf.keras.callbacks.TensorBoard to get the profile tab, but as mentioned in the official document this argument is not supported at this time. Thank You.