Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConvolutionOp (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/nchw_convolution_to_nhwc.cc

    // * Dst dimension numbers: [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f]
    class RewriteNchwConvolutionToNhwc
        : public OpRewritePattern<mlir::stablehlo::ConvolutionOp> {
     public:
      using OpRewritePattern<mlir::stablehlo::ConvolutionOp>::OpRewritePattern;
    
      LogicalResult match(mlir::stablehlo::ConvolutionOp op) const override {
        // Handles 2D convolutions only.
        if (!HasRankOf(op.getOperand(0), /*rank=*/4) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top