Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LiftDotConcatLHS (0.1 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    // Convert:
    //   %y0 = dot_general(%x0, %w)
    //   %y1 = dot_general(%x1, %w)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   dot_general(%x, %w)
    LogicalResult LiftDotConcatLHS(mhlo::ConcatenateOp concat,
                                   PatternRewriter &rewriter) {
      if (concat.getVal().size() < 2)
        return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top