Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FailureOr (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // reached convergence, false otherwise.
      FailureOr<bool> PropagateShapeIntoAttachedFunctions(Operation* op,
                                                          int64_t max_iterations);
    
      // Shape propagation for region based control flow.
      // Returns a failure() on error, otherwise returns true to indicate that it
      // reached convergence, false otherwise.
      FailureOr<bool> PropagateShapeIntoAttachedRegions(Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // TableGen'd op method definitions
    //===----------------------------------------------------------------------===//
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.cc.inc"
    
    static FailureOr<SmallVector<int32_t>> parseI32Array(AsmParser& parser) {
      SmallVector<int32_t> elements;
      auto elementParser = [&]() {
        int32_t element;
        if (failed(parser.parseInteger(element))) return failure();
    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