Home
last modified time | relevance | path

Searched refs:retry_if_eoe (Results 1 – 19 of 19) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Dzip_op.cc33 bool retry_if_eoe) { in getNextZippedRow() argument
38 RETURN_IF_NOT_OK(child_[i]->GetNextRow(&new_row, worker_id, retry_if_eoe)); in getNextZippedRow()
52 Status ZipOp::drainPipeline(int32_t skip_child, int32_t worker_id, bool retry_if_eoe) { in drainPipeline() argument
58 RETURN_IF_NOT_OK(child_[con]->GetNextRow(&row, worker_id, retry_if_eoe)); in drainPipeline()
122 Status ZipOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
124 RETURN_IF_NOT_OK(getNextZippedRow(row, &skip_child, worker_id, retry_if_eoe)); in GetNextRow()
128 RETURN_IF_NOT_OK(drainPipeline(skip_child, worker_id, retry_if_eoe)); in GetNextRow()
Dzip_op.h67 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
76 Status drainPipeline(int32_t skip_child, int32_t worker_id, bool retry_if_eoe);
89 …ZippedRow(TensorRow *const new_zip_row, int32_t *skip_child, int32_t worker_id, bool retry_if_eoe);
Dskip_op.cc49 Status SkipOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
52 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
60 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
Dconcat_op.cc150 Status ConcatOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
157 RETURN_IF_NOT_OK(child_[cur_child_]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
163 RETURN_IF_NOT_OK(GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
182 RETURN_IF_NOT_OK(GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
188 RETURN_IF_NOT_OK(child_[i]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
Dtake_op.cc44 Status TakeOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
47 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
58 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
Dproject_op.cc51 Status ProjectOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
52 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
Drename_op.cc36 Status RenameOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
37 RETURN_IF_NOT_OK(child_[0]->GetNextRow(row, worker_id, retry_if_eoe)); in GetNextRow()
Depoch_ctrl_op.h46 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Dskip_op.h51 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Dtake_op.h61 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Drename_op.h65 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Depoch_ctrl_op.cc43 Status EpochCtrlOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
Dproject_op.h62 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Drepeat_op.h70 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Dconcat_op.h75 Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) override;
Drepeat_op.cc60 Status RepeatOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
Ddataset_op.cc262 Status DatasetOp::GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe) { in GetNextRow() argument
264 RETURN_IF_NOT_OK(out_connector_->PopWithRetry(static_cast<int>(worker_id), row, retry_if_eoe)); in GetNextRow()
Ddataset_op.h163 virtual Status GetNextRow(TensorRow *row, int32_t worker_id, bool retry_if_eoe);
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/
Ddb_connector.h69 Status PopWithRetry(int32_t worker_id, TensorRow *result, bool retry_if_eoe = false) noexcept {
88 if (!(result->eoe() && retry_if_eoe)) {