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

Method getOutput

bolt/cudf/exec/OrderBy.cpp:112–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112bytedance::bolt::RowVectorPtr OrderBy::getOutput() {
113 if (finished_ || !noMoreInput_) {
114 return nullptr;
115 }
116 finished_ = true;
117 bytedance::bolt::RowVectorPtr output = nullptr;
118 if (outputTable_) {
119 stream_.synchronize();
120 output = toBoltRowVector(outputTable_->view(), pool(), stream_);
121 output->setType(outputType_);
122 }
123
124 recordInterOpStats(*this, interOpStats_);
125 return output;
126}
127
128} // namespace bolt::cudf::exec

Callers

nothing calls this directly

Calls 3

recordInterOpStatsFunction · 0.85
poolFunction · 0.50
setTypeMethod · 0.45

Tested by

no test coverage detected