Searched defs:TupleElementCount (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/
H A Dshape_util.cc326 return IsTuple(shape) && TupleElementCount(shape) == 0;
333 /* static */ int64 ShapeUtil::TupleElementCount(const Shape& shape) { function in class:ShapeUtil
341 CHECK_GT(TupleElementCount(shape), index);
350 CHECK_LE(start, TupleElementCount(tuple));
351 CHECK_LE(limit, TupleElementCount(tuple));
904 for (int64 i = 0; i < ShapeUtil::TupleElementCount(shape); ++i) {
921 for (int64 i = 0; i < ShapeUtil::TupleElementCount(*shape); ++i) {

Completed in 949 milliseconds