Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for printOneResultOp (0.26 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

      let extraClassDeclaration = [{
        ParseResult parseOneResultSameOperandTypeOp(OpAsmParser &parser,
                                                    OperationState &result);
    
        void printOneResultOp(Operation *op, OpAsmPrinter &p);
    
        // Registered hook to materialize a constant operation from a given
        // attribute value with the desired resultant type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        ParseResult $cppClass::parse(OpAsmParser &parser, OperationState &result) {
          return parseOneResultSameOperandTypeOp(parser, result);
        }
        void $cppClass::print(OpAsmPrinter &p) {
          return printOneResultOp(getOperation(), p);
        }
      }];
    
      let hasOptions = 1;
    }
    
    def TFL_AddNOp : TFL_Op<"add_n", [
        Commutative,
        Pure,
        SameOperandsAndResultsScale,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      SmallVector<OpAsmParser::UnresolvedOperand, 2> ops;
      // If the operand list is in-between parentheses, then we have a generic form.
      // (see the fallback in `printOneResultOp`).
      if (!parser.parseOptionalLParen()) {
        if (parser.parseOperandList(ops) || parser.parseRParen()) return failure();
        return parser.parseGenericOperationAfterOpName(result, ops);
      }
      Type type;
    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