Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PopulateLegalizeTfQuantizationPatterns (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    // Populates TF to MHLO legalization for some of the quantization ops.
    //
    // TODO(hinsu): Remove this once we combine quantized and non quantized op
    // legalization in the ODML conversion pipeline.
    void PopulateLegalizeTfQuantizationPatterns(MLIRContext* context,
                                                RewritePatternSet* patterns);
    
    /// Converts the provided Operation as well as all nested operations into HLO
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      });
    
      RewritePatternSet patterns(ctx);
      PopulateLegalizeTfQuantizationPatterns(ctx, &patterns);
      if (failed(applyPartialConversion(func, target, std::move(patterns)))) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    void PopulateLegalizeTfQuantizationPatterns(MLIRContext *context,
                                                RewritePatternSet *patterns) {
      patterns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top