Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for pM (0.02 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

    void AddXlaCallModuleOpDeserializationPasses(OpPassManager& pm) {
      pm.addPass(TF::CreateXlaCallModuleDeserializationPass());
      pm.addPass(createRestoreFunctionNamePass());
      pm.addPass(createUnwrapXlaCallModuleOpPass());
      pm.addPass(createSymbolDCEPass());
    }
    
    void AddShapeLegalizationPasses(OpPassManager& pm) {
      pm.addPass(mhlo::createStablehloLegalizeToHloPass());
      pm.addNestedPass<func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addPass(tensorflow::tf2xla::internal::
                     CreateExtractHeadTailOutsideCompilationPass());
      pm.addPass(
          tensorflow::tf2xla::internal::CreateExtractOutsideCompilationPass());
      pm.addNestedPass<FuncOp>(
          mlir::TFDevice::CreateVerifyNoOutsideCompilationMarkersPass());
    
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateClusterConstantSinkingPass());
      pm.addPass(mlir::TF::CreateResourceDeviceInferencePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

      // and edge case handling where possible.
      pm.addNestedPass<func::FuncOp>(TF::CreateDropWhileShapeInvariantPass());
      pm.addNestedPass<func::FuncOp>(
          tf_executor::CreateTFExecutorGraphPruningPass());
      pm.addNestedPass<func::FuncOp>(
          tf_executor::CreateTFExecutorIslandCoarseningPass());
      pm.addPass(TF::CreateTFFunctionalControlFlowToRegions());
      pm.addPass(mlir::createInlinerPass());
      pm.addPass(mlir::createSymbolDCEPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

          /*pass_prefix=*/"",
          /*print_module_scope=*/true));
      pm.enableTiming();
    }
    
    }  // namespace
    
    void AddTPULowerClusterToRuntimeOpsPassPipeline(OpPassManager& pm,
                                                    llvm::StringRef module_name) {
      pm.addPass(mlir::TFTPU::CreateTPURewritePass(module_name));
      pm.addPass(mlir::createSymbolDCEPass());
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/debug/debug_test.cc

    TEST_F(InitPassManagerTest, CrashReproducer) {
      converter::DebugOptions debug_options;
      *debug_options.mutable_ir_dump_dir() = path_;
    
      mlir::PassManager pm(&context_);
      InitPassManager(pm, debug_options);
      pm.addPass(std::make_unique<AlwaysFailPass>());
      ASSERT_TRUE(mlir::failed(pm.run(*module_)));
    
      std::string dump_dir;
      TF_ASSERT_OK(GetDumpDir(&dump_dir));
    
      std::string mlir_dump;
      TF_ASSERT_OK(tsl::ReadFileToString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    void AddPostCalibrationPasses(
        OpPassManager& pm,
        const ::stablehlo::quantization::PipelineConfig& pipeline_config,
        const ::stablehlo::quantization::QuantizationSpecs& specs);
    
    // Adds passes for weight-only quantization.
    void AddWeightOnlyQuantizationPasses(
        OpPassManager& pm,
        const ::stablehlo::quantization::QuantizationSpecs& quantization_specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/volume/csimigration/plugin_manager.go

    		return pm.featureGate.Enabled(features.InTreePluginAWSUnregister)
    	case csilibplugins.GCEPDInTreePluginName:
    		return pm.featureGate.Enabled(features.InTreePluginGCEUnregister)
    	case csilibplugins.AzureFileInTreePluginName:
    		return pm.featureGate.Enabled(features.InTreePluginAzureFileUnregister)
    	case csilibplugins.AzureDiskInTreePluginName:
    		return pm.featureGate.Enabled(features.InTreePluginAzureDiskUnregister)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

    void AddConvertTpuToCpuModelPasses(mlir::OpPassManager &pm) {
      pm.addPass(mlir::quant::CreateConvertTpuModelToCpuPass());
      pm.addPass(mlir::createInlinerPass());
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
      pm.addPass(mlir::quant::CreateCastBf16OpsToF32Pass());
    }
    
    }  // namespace
    
    void AddQuantizeQatPasses(
        mlir::OpPassManager &pm, const QuantizationOptions &quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    // plugins.
    func (pm *VolumePluginMgr) InitPlugins(plugins []VolumePlugin, prober DynamicPluginProber, host VolumeHost) error {
    	pm.mutex.Lock()
    	defer pm.mutex.Unlock()
    
    	pm.Host = host
    	pm.loggedDeprecationWarnings = sets.New[string]()
    
    	if prober == nil {
    		// Use a dummy prober to prevent nil deference.
    		pm.prober = &dummyPluginProber{}
    	} else {
    		pm.prober = prober
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/unfreeze_constants.cc

          /*name=*/kTfQuantInsertRestoreOpStepName,
          /*add_passes_func=*/
          [](mlir::PassManager &pm) {
            pm.addPass(mlir::quant::CreateInsertRestoreOpPass());
            pm.addPass(mlir::quant::CreateInsertSaveOpPass());
            // Initialization by `tf.ConstOp` is no longer required as there is
            // a `tf.RestoreV2Op` now.
            pm.addPass(
                mlir::quant::CreateRemoveVariableInitializationByConstPass());
          },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 11:07:03 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top