Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 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/tensorflow/transforms/mlprogram.cc

      pm.addPass(mlir::TF::CreateLocalizeVarHandlesPass());
      pm.addPass(mlir::tf_saved_model::CreateAddFunctionsForExportedNamesPass());
      pm.addPass(mlir::tf_saved_model::CreateStripSavedModuleMetadataPass());
    
      pm.addPass(mlir::TF::CreateRemoveUnusedArgumentsPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateRemoveUnusedWhileResultsPass());
    
      pm.addPass(mlir::createInlinerPass());
      pm.addPass(mlir::createCanonicalizerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:39:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  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/tensorflow/debugging/mlir_dump_test.cc

    };
    
    TEST_F(EnableIrPrintingTest, PassSuccessfullyRuns) {
      mlir::PassManager pm = {ctx_.get()};
      pm.addPass(CreateNoOpPass());
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
    
      EnableIrPrinting(pm, "dump");
    
      constexpr absl::string_view program = R"mlir(
    module{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. test/fixedbugs/bug322.dir/main.go

    	M()
    }
    
    type PI interface {
    	PM()
    }
    
    func main() {
    	var t lib.T
    	t.M()
    	t.PM()
    
    	// This is still an error.
    	// var i1 I = t
    	// i1.M()
    	
    	// This combination is illegal because
    	// PM requires a pointer receiver.
    	// var pi1 PI = t
    	// pi1.PM()
    
    	var pt = &t
    	pt.M()
    	pt.PM()
    
    	var i2 I = pt
    	i2.M()
    
    	var pi2 PI = pt
    	pi2.PM()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 24 23:48:19 UTC 2011
    - 540 bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/plugin_manager.go

    	klog.InfoS("Starting Kubelet Plugin Manager")
    	go pm.reconciler.Run(stopCh)
    
    	metrics.Register(pm.actualStateOfWorld, pm.desiredStateOfWorld)
    	<-stopCh
    	klog.InfoS("Shutting down Kubelet Plugin Manager")
    }
    
    func (pm *pluginManager) AddHandler(pluginType string, handler cache.PluginHandler) {
    	pm.reconciler.AddHandler(pluginType, handler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. 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)
Back to top