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

  /external/tensorflow/tensorflow/core/framework/
tensor_shape.cc 61 if (proto.dim().size() > MaxDimensions()) return false;
87 if (proto.dim().size() > MaxDimensions()) {
326 CHECK_LT(ndims_byte(), MaxDimensions()) << "Too many dimensions in tensor";
392 CHECK_LT(dims(), MaxDimensions());
572 if (n > TensorShape::MaxDimensions()) {
tensor_shape.h 62 static constexpr int MaxDimensions() { return 254; }
475 static_assert(NDIMS <= TensorShape::MaxDimensions(), "Too many dimensions");
tensor_shape_test.cc 144 for (int i = 0; i < TensorShape::MaxDimensions(); i++) {
  /external/tensorflow/tensorflow/c/eager/
c_api.cc 679 if (num_dims > tensorflow::TensorShape::MaxDimensions()) {
684 tensorflow::TensorShape::MaxDimensions(), ".")
773 if (num_dims_i > tensorflow::TensorShape::MaxDimensions()) {
778 tensorflow::TensorShape::MaxDimensions(), ".")
    [all...]

Completed in 354 milliseconds