Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParseExecuteOpOptions (0.46 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

    }
    LogicalResult BatchFunctionOp::verify() {
      return fallback_common::VerifyExecuteOpCommon(*this);
    }
    
    ParseResult CreateOp::parse(OpAsmParser &parser, OperationState &result) {
      fallback_common::ParseExecuteOpOptions parse_options;
      parse_options.has_chain = true;
      parse_options.has_key = true;
      parse_options.has_device = true;
      parse_options.has_func_attr = true;
      parse_options.has_cost = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

    void GetExecuteOpAttrsCommon(
        mlir::MLIRContext *context, llvm::ArrayRef<mlir::Attribute> op_attr_array,
        llvm::SmallVectorImpl<std::pair<llvm::StringRef, mlir::Attribute>>
            *op_attrs);
    
    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;
    };
    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/tfrt/ir/tfrt_fallback_common.cc

                                           mlir::OperationState &result,
                                           mlir::Type tensor_type,
                                           const ParseExecuteOpOptions &options) {
      auto chain_type = builder.getType<compiler::ChainType>();
    
      mlir::IntegerAttr op_key;
      mlir::IntegerAttr cost;
      mlir::StringAttr device;
      mlir::StringAttr op_name;
      mlir::SymbolRefAttr f;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top