Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintExecuteOpFuncAttribute (0.35 sec)

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

        << op->getAttr("device") << ") " << op->getAttr("op_name") << "()";
    
      fallback_common::PrintExecuteOpCommon(p, op);
      fallback_common::PrintExecuteOpFuncAttribute(p, op);
    
      p << " num_args(" << op->getAttrOfType<mlir::IntegerAttr>("num_args").getInt()
        << ')';
    }
    
    void ExecuteOp::print(OpAsmPrinter &p) {
      ExecuteOp op = *this;
    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

                                     "pair, where both the key and the value are "
                                     "strings";
      }
      return mlir::success();
    }
    
    template <typename OpTy>
    void PrintExecuteOpFuncAttribute(mlir::OpAsmPrinter &p, OpTy op) {
      auto op_func_attrs = op.getOpFuncAttrs();
      if (!op_func_attrs.empty()) {
        auto print_key_value = [&](mlir::Attribute attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top