@@ -20,10 +20,10 @@ namespace c10d {
20
20
// (minor when adding fields, major when changing existing fields)
21
21
// Also update both JSON and Pickle dumps to make use of the newly defined
22
22
// field(s).
23
- DEFINE_CONSTANT (version_val, " 2.9 " )
23
+ DEFINE_CONSTANT (version_val, " 2.10 " )
24
24
DEFINE_CONSTANT (entries_key, " entries" )
25
25
DEFINE_CONSTANT (nccl_comm_key, " nccl_comm_state" )
26
- DEFINE_CONSTANT (nccl_version_key , " nccl_version " )
26
+ DEFINE_CONSTANT (comm_lib_version_key , " comm_lib_version " )
27
27
DEFINE_CONSTANT (version_key, " version" )
28
28
DEFINE_CONSTANT (pg_config_key, " pg_config" )
29
29
DEFINE_CONSTANT (pg_status_key, " pg_status" )
@@ -179,7 +179,7 @@ struct FlightRecorder {
179
179
std::map<size_t , std::shared_ptr<ProcessGroupStatus>> all_pg_status_ = {};
180
180
std::map<std::tuple<std::string, std::string>, std::vector<uint64_t >>
181
181
pg_name_to_ranks_ = {};
182
- std::string nccl_version_ ;
182
+ std::string comm_lib_version_ ;
183
183
184
184
std::optional<size_t > record (
185
185
size_t pg_id,
@@ -200,7 +200,7 @@ struct FlightRecorder {
200
200
const std::tuple<std::string, std::string>& pg_name,
201
201
std::vector<uint64_t > ranks);
202
202
203
- void record_accelerator_version (const std::string nccl_version );
203
+ void record_accelerator_version (const std::string comm_lib_version );
204
204
205
205
void update_state (Entry& r);
206
206
0 commit comments