MCPcopy Create free account
hub / github.com/bytedance/bolt / extractDriverIds

Function extractDriverIds

bolt/exec/TraceUtil.cpp:228–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226}
227
228std::vector<uint32_t> extractDriverIds(const std::string& driverIds) {
229 std::vector<uint32_t> driverIdList;
230 if (driverIds.empty()) {
231 return driverIdList;
232 }
233 folly::split(",", driverIds, driverIdList);
234 return driverIdList;
235}
236
237bool canTrace(const std::string& operatorType) {
238 static const std::unordered_set<std::string> kSupportedOperatorTypes{

Callers 2

TEST_FFunction · 0.85
OperatorReplayerBaseMethod · 0.85

Calls 1

emptyMethod · 0.45

Tested by 1

TEST_FFunction · 0.68