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

Method operators

bolt/exec/Driver.cpp:1073–1080  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073std::vector<Operator*> Driver::operators() const {
1074 std::vector<Operator*> operators;
1075 operators.reserve(operators_.size());
1076 for (auto& op : operators_) {
1077 operators.push_back(op.get());
1078 }
1079 return operators;
1080}
1081
1082std::string Driver::toString() const {
1083 std::stringstream out;

Callers 2

taskStatsMethod · 0.80

Calls 4

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected