Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shape_value (0.08 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                   << "output must have the same rank with the length of shape = "
                   << output_rank;
          }
        }
      }
    
      DenseIntElementsAttr shape_value;
      if (matchPattern(shape, m_Constant(&shape_value))) {
        for (const auto shape_elem : shape_value) {
          if (shape_elem.getSExtValue() <= 0) {
            return op.emitOpError("all elements of shape must be > 0");
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top