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

  /external/tensorflow/tensorflow/core/kernels/
scatter_op.cc 104 const int64 N_big = indices.NumElements();
106 c, N_big <= std::numeric_limits<Index>::max(),
109 " indexing: ", N_big, " > ",
168 const int64 N_big = indices.NumElements();
170 c, N_big <= std::numeric_limits<Index>::max(),
173 " indexing: ", N_big, " > ",
gather_nd_op.cc 100 int64 N_big = 1;
102 N_big *= indices_shape.dim_size(i);
104 if (N_big > std::numeric_limits<int>::max()) {
106 "indices has too many elements for int indexing: ", N_big, " > ",
scatter_nd_op.cc 358 const int64 N_big = indices.NumElements();
359 if (N_big > std::numeric_limits<Index>::max()) {
362 " indexing: ", N_big, " > ",
resource_variable_ops.cc 582 const int64 N_big = indices.NumElements();
584 c, N_big <= std::numeric_limits<Index>::max(),
587 " indexing: ", N_big, " > ",

Completed in 1016 milliseconds