MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / StepOnce

Method StepOnce

tensorflow/core/lib/db/sqlite.cc:207–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207Status SqliteStatement::StepOnce() {
208 bool is_done;
209 TF_RETURN_IF_ERROR(Step(&is_done));
210 if (TF_PREDICT_FALSE(is_done)) {
211 return errors::Internal("No rows returned: ", sql());
212 }
213 return Status::OK();
214}
215
216const SqliteStatement& SqliteStatement::StepOnceOrDie() {
217 TF_CHECK_OK(StepOnce());

Callers 1

TEST_FFunction · 0.80

Calls 2

StepClass · 0.85
InternalFunction · 0.85

Tested by 1

TEST_FFunction · 0.64