Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 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/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)
  4. 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)
  5. pkg/kubelet/pod/pod_manager.go

    func NewBasicPodManager() Manager {
    	pm := &basicManager{}
    	pm.SetPods(nil)
    	return pm
    }
    
    // Set the internal pods based on the new pods.
    func (pm *basicManager) SetPods(newPods []*v1.Pod) {
    	pm.lock.Lock()
    	defer pm.lock.Unlock()
    
    	pm.podByUID = make(map[kubetypes.ResolvedPodUID]*v1.Pod)
    	pm.podByFullName = make(map[string]*v1.Pod)
    	pm.mirrorPodByUID = make(map[kubetypes.MirrorPodUID]*v1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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