HomeSort by relevance Sort by last modified time
    Searched refs:a_row (Results 1 - 9 of 9) sorted by null

  /external/tensorflow/tensorflow/core/util/sparse/
dim_comparator.h 74 const int64 a_row, const int64 b_row, const int dims) {
76 const int64 a = a_idx(a_row, d);
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
triangular_solve.cc 458 // a_row = np.swapaxes(a[..., i+1:, i:i+1], -1 -2)
460 // a_row = a[..., i:i+1, :i]
461 // result_row = b[..., i:i+1, :] - np.matmul(a_row, output[..., :, :])
508 // a_row = T(a[..., i+1:, i:i+1])
510 // - np.matmul(a_row, body_out[..., i+1:, :]))
517 xla::ComputationDataHandle a_row; local
519 a_row = dynamic_slice(body_a, {zero, i}, {m, 1});
521 a_row = dynamic_slice(body_a, {i, zero}, {1, m});
523 TF_ASSIGN_OR_RETURN(auto b_update, BatchDot(bodyb.get(), a_row, body_out,
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
factory.py 184 a_row = self.con.execute("select ?", (austria,)).fetchone()
186 self.assertTrue(type(a_row[0]) == unicode, "type of non-ASCII row must be unicode")
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
factory.py 184 a_row = self.con.execute("select ?", (austria,)).fetchone()
186 self.assertTrue(type(a_row[0]) == unicode, "type of non-ASCII row must be unicode")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 184 a_row = self.con.execute("select ?", (austria,)).fetchone()
186 self.assertTrue(type(a_row[0]) == unicode, "type of non-ASCII row must be unicode")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 184 a_row = self.con.execute("select ?", (austria,)).fetchone()
186 self.assertTrue(type(a_row[0]) == unicode, "type of non-ASCII row must be unicode")
  /external/python/cpython2/Lib/sqlite3/test/
factory.py 225 a_row = self.con.execute("select ?", (austria,)).fetchone()
227 self.assertEqual(type(a_row[0]), unicode, "type of non-ASCII row must be unicode")
  /external/python/cpython3/Lib/sqlite3/test/
factory.py 237 a_row = self.con.execute("select ?", (austria,)).fetchone()
239 self.assertEqual(type(a_row[0]), str, "type of non-ASCII row must be str")
  /external/tensorflow/tensorflow/core/kernels/
sparse_conditional_accumulator.h 411 const int64 a_row, const int64 b_row) {
412 const int64 a = a_idx->at(a_row);

Completed in 769 milliseconds