log_analyzer/ds_comm_log_analyzer.py [39:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return CommType.reduce_scatter
    if "all_reduce" in s:
        return CommType.all_reduce
    if "broadcast" in s:
        return CommType.broadcast
    if "barrier" in s:
        return CommType.barrier
    if "reduce" in s:
        return CommType.reduce
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



workload_generator/analysis_pytorch_trace.py [37:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            return CommType.reduce_scatter
        if "all_reduce" in s:
            return CommType.all_reduce
        if "broadcast" in s:
            return CommType.broadcast
        if "barrier" in s:
            return CommType.barrier
        if "reduce" in s:
            return CommType.reduce
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



