Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreatePropagateQuantizeTypePass (0.52 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

          signalPassFailure();
        }
      }
    }
    
    }  // namespace
    
    // Creates an instance of the TensorFlow dialect PropagateQuantizeType pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePropagateQuantizeTypePass() {
      return std::make_unique<PropagateQuantizeType>();
    }
    
    static PassRegistration<PropagateQuantizeType> pass;
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::CreatePrepareLiftingPass(quantization_options.op_set()));
      pm.addPass(mlir::quant::CreateQuantizeWeightsPass(quantization_options));
      pm.addPass(mlir::quant::CreatePropagateQuantizeTypePass());
      pm.addPass(mlir::createSymbolDCEPass());
      pm.addPass(mlir::createInlinerPass());
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

        const tensorflow::quantization::QuantizationOptions& quant_options);
    
    // Propagate quantized type through allowed ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePropagateQuantizeTypePass();
    
    // Create a pass that inserts dump tensor to quantizable layer's output.
    std::unique_ptr<OperationPass<ModuleOp>> CreateAddDumpTensorOpPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top