1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
#pragma once
#include <ATen/core/ivalue.h>
#include <ATen/record_function.h>
#include <c10/macros/Macros.h>
#include <c10/util/ThreadLocalDebugInfo.h>
#include <string>
#include <vector>
namespace torch {
class TORCH_API ParamCommsDebugInfo : public c10::DebugInfoBase {
public:
ParamCommsDebugInfo() = default;
ParamCommsDebugInfo(
std::tuple<std::string, std::string> pgName,
int rank,
std::string&& collName,
int64_t inNelems,
int64_t outNelems,
at::ScalarType dType,
std::vector<int64_t> inSplitSizes,
std::vector<int64_t> outSplitSizes,
int globalRankStart,
int globalRankStride,
int worldSize);
~ParamCommsDebugInfo() override = default;
const std::string getProcessGroupName() const {
return std::get<0>(pgName_);
}
const std::string getProcessGroupDesc() const {
return std::get<1>(pgName_);
}
int getRank() const {
return rank_;
}
int getWorldSize() const {
return worldSize_;
}
int getGlobalRankStart() const {
return globalRankStart_;
}
int getGlobalRankStride() const {
return globalRankStride_;
}
const std::string getCollectiveName() const {
return collectiveName_;
}
int64_t getInMessageNelems() const {
return inMessageNelems_;
}
int64_t getOutMessageNelems() const {
return outMessageNelems_;
}
at::ScalarType getDType() const {
return dType_;
}
const std::vector<int64_t>& getInputSplitSizes() const {
return inputSplitSizes_;
}
const std::vector<int64_t>& getOutputSplitSizes() const {
return outputSplitSizes_;
}
const std::vector<int64_t>& getGroupRanks() const {
return groupRanks_;
}
private:
std::tuple<std::string, std::string> pgName_; // <group_name, group_desc>
int rank_{};
int worldSize_{};
std::string collectiveName_;
int64_t inMessageNelems_{};
int64_t outMessageNelems_{};
at::ScalarType dType_ = at::kByte;
std::vector<int64_t> inputSplitSizes_;
std::vector<int64_t> outputSplitSizes_;
int globalRankStart_{};
int globalRankStride_{};
std::vector<int64_t> groupRanks_{};
};
#define RECORD_PARAM_COMMS( \
seq, \
pgName, \
rank, \
collName, \
inNelems, \
outNelems, \
dType, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize) \
auto paramCommsInfo = std::make_shared<torch::ParamCommsDebugInfo>( \
pgName, \
rank, \
collName, \
inNelems, \
outNelems, \
dType, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize); \
c10::DebugInfoGuard g(c10::DebugInfoKind::PARAM_COMMS_INFO, paramCommsInfo); \
std::initializer_list<const c10::IValue> paramList = { \
seq, \
pgName, \
rank, \
collName, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize}; \
c10::ArrayRef<const c10::IValue> paramInputs(paramList); \
RECORD_FUNCTION(at::kParamCommsCallName, paramInputs);
#define RECORD_PARAM_COMMS_DATA( \
seq, \
pgName, \
InputTensors, \
OutputTensors, \
rank, \
collName, \
inNelems, \
outNelems, \
dType, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize) \
auto paramCommsInfo = std::make_shared<torch::ParamCommsDebugInfo>( \
pgName, \
rank, \
collName, \
inNelems, \
outNelems, \
dType, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize); \
c10::DebugInfoGuard g(c10::DebugInfoKind::PARAM_COMMS_INFO, paramCommsInfo); \
std::initializer_list<const c10::IValue> paramList = { \
c10::IValue(InputTensors), \
seq, \
pgName, \
rank, \
collName, \
inSplitSizes, \
outSplitSizes, \
globalRankStart, \
globalRankStride, \
worldSize}; \
c10::ArrayRef<const c10::IValue> paramInputs(paramList); \
RECORD_FUNCTION_WITH_INPUTS_OUTPUTS( \
at::kParamCommsCallName, \
paramInputs, \
std::vector<c10::IValue>(1, c10::IValue(OutputTensors)));
} // namespace torch
|