Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 168 for pM (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.h

    void AddQuantizeWeightOnlyPasses(
        mlir::OpPassManager &pm, const QuantizationOptions &quantization_options,
        std::optional<const absl::string_view> mlir_dump_file_prefix =
            std::nullopt);
    
    void AddQuantizePtqPreCalibrationPasses(
        mlir::OpPassManager &pm, const QuantizationOptions &quantization_options);
    
    void AddQuantizePtqPostCalibrationPasses(
        mlir::OpPassManager &pm, const QuantizationOptions &quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 10:03:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    namespace {
    
    void CreateReplicatedBridgePipelineV1(OpPassManager &pm) {
      pm.addPass(mlir::tf2xla::internal::CreateInferenceMetricsPass());
    
      // Convert to unified compilation and replication attributes.
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateCanonicalizeCompileAndReplicateAttributesPass());
      // Guarantee all functions have one use, which enables more exact shape
      // inference.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. pkg/config/xds/filters.go

    	pm "istio.io/istio/pkg/model"
    )
    
    const (
    	WasmHTTPFilterType    = pm.WasmHTTPFilterType
    	WasmNetworkFilterType = pm.WasmNetworkFilterType
    	RBACHTTPFilterType    = resource.APITypePrefix + "envoy.extensions.filters.http.rbac.v3.RBAC"
    	RBACNetworkFilterType = resource.APITypePrefix + "envoy.extensions.filters.network.rbac.v3.RBAC"
    	TypedStructType       = pm.TypedStructType
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

    constexpr char kExportFailed[] = "failed";
    
    namespace {
    
    void AddTfDialectToExecutorPasses(OpPassManager &pm) {
      auto add_pass = [&](std::unique_ptr<Pass> pass) {
        pm.addNestedPass<FuncOp>(std::move(pass));
        pm.addPass(mlir::CreateBreakUpIslandsPass());
      };
    
      pm.addPass(mlir::tf_executor::CreateTFExecutorTPUV1IslandInliningPass());
      // There are cases where we don't consume all compilation and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/internal/profile/merge.go

    	}
    	for i, ln := range src.Line {
    		l.Line[i] = pm.mapLine(ln)
    	}
    	// Check memoization table. Must be done on the remapped location to
    	// account for the remapped mapping ID.
    	k := l.key()
    	if ll, ok := pm.locations[k]; ok {
    		pm.locationsByID[src.ID] = ll
    		return ll
    	}
    	pm.locationsByID[src.ID] = l
    	pm.locations[k] = l
    	pm.p.Location = append(pm.p.Location, l)
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
Back to top