Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for has_symbol_ref (0.63 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

    struct ParseExecuteOpOptions {
      bool has_chain = false;
      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)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

           parser.parseRParen()))
        return mlir::failure();
    
      if (options.has_op_name &&
          parser.parseAttribute(op_name, "op_name", result.attributes))
        return mlir::failure();
    
      if (options.has_symbol_ref &&
          parser.parseAttribute(f, "f", result.attributes))
        return mlir::failure();
    
      if (parser.parseOperandList(operands, mlir::OpAsmParser::Delimiter::Paren) ||
          parser.parseOptionalAttrDict(op_attrs) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

      parse_options.has_key = false;
      parse_options.has_device = true;
      parse_options.has_func_attr = false;
      parse_options.has_cost = false;
      parse_options.has_op_name = false;
      parse_options.has_symbol_ref = true;
    
      auto &builder = parser.getBuilder();
      return fallback_common::ParseExecuteOpCommon(
          parser, builder, result, builder.getType<fallback::TFTensorType>(),
          parse_options);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top