.. inclusion-marker-start-do-not-remove Analyze Performance =================== Horovod has the ability to record the timeline of its activity, called Horovod Timeline. .. image:: https://user-images.githubusercontent.com/16640218/29735271-9e148da0-89ac-11e7-9ae0-11d7a099ac89.png :alt: Horovod Timeline To record a Horovod Timeline, set the ``--timeline-filename`` command line argument to the location of the timeline file to be created. This file is only recorded on rank 0, but it contains information about activity of all workers. .. code-block:: bash $ horovodrun -np 4 --timeline-filename /path/to/timeline.json python train.py You can then open the timeline file using the ``chrome://tracing`` facility of the `Chrome `__ browser. In the example above, you can see few tensors being reduced. There are two major phases for each tensor reduction: 1. **Negotiation** - a phase when all workers send to rank 0 signal that they're ready to reduce the given tensor. * Each worker reporting readiness is represented by a tick under the ``NEGOTIATE_ALLREDUCE`` bar, so you can see which workers were early and which were late. * Immediately after negotiation, rank 0 sends all other workers signal to start reducing the tensor. 2. **Processing** - a phase when the operation actually happens. It is further subdivided into multiple sub-phases: * ``WAIT_FOR_DATA`` indicates time taken to wait for GPU to finish computing input to the **allreduce**, *allgather*, or **broadcast** operations. This happens because TensorFlow tries to smartly interleave scheduling and GPU computation. This is only applicable to situations where the Horovod operation is placed on GPU. * ``WAIT_FOR_OTHER_TENSOR_DATA`` indicates time taken to wait for GPU to finish computing other inputs for other operations that are part of the same fusion batch. * ``QUEUE`` happens when reduction is done with NCCL, and the previous NCCL operation did not finish yet. * ``MEMCPY_IN_FUSION_BUFFER`` and ``MEMCPY_OUT_FUSION_BUFFER`` indicate time taken to copy data into and out of the fusion buffer. * ``NCCL_ALLREDUCE``, ``MPI_ALLREDUCE``, ``MPI_ALLGATHER``, or ``MPI_BCAST`` indicate time taken to do the actual operation on GPU (or CPU) and highlights whether the operation was performed using NCCL or pure MPI. * In case of ``HOROVOD_HIERARCHICAL_ALLREDUCE=1``, ``NCCL_ALLREDUCE`` will become a sequence or a subsequence of ``NCCL_REDUCESCATTER``, ``NCCL_REDUCE``, ``MEMCPY_IN_HOST_BUFFER``, ``MPI_ALLREDUCE``, ``MEMCPY_OUT_HOST_BUFFER``, ``NCCL_ALLGATHER``, ``NCCL_BCAST``. Adding cycle markers ~~~~~~~~~~~~~~~~~~~~ Horovod performs work in cycles. These cycles are used to aid `Tensor Fusion `__. Horovod has the ability to record the moment when each cycle starts for debugging of Tensor Fusion. .. image:: https://user-images.githubusercontent.com/16640218/51659458-64806100-1f5f-11e9-9a27-ba934ceec75f.png :alt: Cycle Markers Since this information makes timeline view very crowded, it is not enabled by default. To add cycle markers to the timeline, set the ``--timeline-mark-cycles`` flag: .. code-block:: bash $ horovodrun -np 4 --timeline-filename /path/to/timeline.json --timeline-mark-cycles python train.py .. inclusion-marker-end-do-not-remove