Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InsertRequantForReduceMean (0.22 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

        MLIRContext* context) const {
      mlir::RewritePatternSet patterns(context);
    
      patterns.add<SquaredDifference, LowerPackIntoConcatReshape,
                   ReduceMeanToAvgPool, InsertRequantForReduceMean>(context);
      return patterns;
    }
    
    std::unique_ptr<TargetHardware> CreateNNAPIHardware() {
      return std::make_unique<NNAPIHardware>();
    }
    
    TargetHardwareRegistration<NNAPIHardware> nnapi_hardware(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

      LogicalResult matchAndRewrite(TFL::MeanOp mean_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    // Insert Requant ops for reduce_mean.
    struct InsertRequantForReduceMean : public OpRewritePattern<TFL::MeanOp> {
      using OpRewritePattern<TFL::MeanOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::MeanOp mean_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top