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

Method BindDouble

tensorflow/core/lib/db/sqlite.h:215–218  ·  view source on GitHub ↗

\brief Binds double to 1-indexed query parameter.

Source from the content-addressed store, hash-verified

213
214 /// \brief Binds double to 1-indexed query parameter.
215 void BindDouble(int parameter, double value) {
216 Update(sqlite3_bind_double(stmt_, parameter, value), parameter);
217 size_ += sizeof(double);
218 }
219 void BindDouble(const char* parameter, double value) {
220 BindDouble(GetParameterIndex(parameter), value);
221 }

Callers 6

TEST_FFunction · 0.80
SaveGraphMethod · 0.80
LOCKS_EXCLUDEDMethod · 0.80
UpdateMethod · 0.80
~SummaryDbWriterMethod · 0.80

Calls 1

UpdateFunction · 0.85

Tested by 1

TEST_FFunction · 0.64