Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ParseResult (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        }
      }
      return success();
    }
    
    void GraphOp::print(OpAsmPrinter &p) {
      p << ' ';
      p.printRegion(getOperation()->getRegion(0));
      p.printOptionalAttrDict(getOperation()->getAttrs());
    }
    
    ParseResult GraphOp::parse(OpAsmParser &parser, OperationState &result) {
      llvm::SMLoc loc = parser.getCurrentLocation();
    
      // Parse the body region.
      Region &body = *result.addRegion();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

      bool has_key = false;
      bool has_device = false;
      bool has_func_attr = false;
      bool has_cost = false;
      bool has_op_name = true;
      bool has_symbol_ref = false;
    };
    
    mlir::ParseResult ParseExecuteOpCommon(mlir::OpAsmParser &parser,
                                           mlir::Builder &builder,
                                           mlir::OperationState &result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

      }];
    
      let cppNamespace = "::mlir::TFL";
    
      let useDefaultAttributePrinterParser = 1;
      let useDefaultTypePrinterParser = 1;
    
      let extraClassDeclaration = [{
        ParseResult parseOneResultSameOperandTypeOp(OpAsmParser &parser,
                                                    OperationState &result);
    
        void printOneResultOp(Operation *op, OpAsmPrinter &p);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

        llvm::StringRef key = mlir::cast<mlir::StringAttr>(key_value[0]).getValue();
        mlir::Attribute value = key_value[1];
        op_attrs->push_back({key, value});
      }
    }
    
    mlir::ParseResult ParseExecuteOpCommon(mlir::OpAsmParser &parser,
                                           mlir::Builder &builder,
                                           mlir::OperationState &result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

    }
    
    //===----------------------------------------------------------------------===//
    // tf_device.replicate
    //===----------------------------------------------------------------------===//
    
    namespace {
    ParseResult ParseReplicateOpOperands(
        OpAsmParser* parser, OperationState* state,
        llvm::SmallVectorImpl<llvm::SmallVector<OpAsmParser::UnresolvedOperand, 8>>*
            replicated_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
    
      let builders = [TFL_FusedBroadcastableBinaryBuilder];
    
      let hasCustomAssemblyFormat = 1;
    
      let extraClassDefinition = [{
        ParseResult $cppClass::parse(OpAsmParser &parser, OperationState &result) {
          return parseOneResultSameOperandTypeOp(parser, result);
        }
        void $cppClass::print(OpAsmPrinter &p) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(NegOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SinOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SqrtOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SquareOp);
    
    namespace {
    
    ParseResult parseOneResultSameOperandTypeOp(OpAsmParser& parser,
                                                OperationState& result) {
      SmallVector<OpAsmParser::UnresolvedOperand, 2> ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.MetaDataParser$ParseResult> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (MetaDataParser.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top