Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDefiningBroadcastArgsOp (0.45 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      p.printOperands(op->getOperands());
      p.printOptionalAttrDict(op->getAttrs());
      // Now we can output only one type for all operands and the result.
      p << " : " << resultType;
    }
    
    Operation* getDefiningBroadcastArgsOp(Value operand) {
      auto* defining_op = operand.getDefiningOp();
      if (!llvm::dyn_cast_or_null<TF::BroadcastToOp>(defining_op) &&
          !llvm::dyn_cast_or_null<TFL::BroadcastToOp>(defining_op)) {
        return nullptr;
    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