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

  /external/tensorflow/tensorflow/core/framework/
tensor_shape.cc 280 } else if (tag() == REP32) {
343 } else if (tag() == REP32 && nd < 3 && size < kMaxRep32) {
355 // to allow REP32.
366 set_tag(REP32);
419 } else if (tag() == REP32 && size < kMaxRep32) {
485 } else if (tag_ == REP32) {
486 fprintf(stderr, "REP32 NDIMS: %d\n", ndims_);
tensor_shape.h 89 // Rep32: Supports up to 3 dimensions where each dimension is < 2^32 - 1
97 struct Rep32 {
112 Rep32* as32() { return reinterpret_cast<Rep32*>(buf()); }
116 const Rep32* as32() const { return reinterpret_cast<const Rep32*>(buf()); }
119 enum RepTag { REP16 = 0, REP32 = 1, REP_OUT_OF_LINE = 2 };

Completed in 985 milliseconds