Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for accelerate (0.18 sec)

  1. pkg/scheduler/framework/types.go

    		UnschedulablePlugins:    pqi.UnschedulablePlugins.Clone(),
    		Gated:                   pqi.Gated,
    	}
    }
    
    // PodInfo is a wrapper to a Pod with additional pre-computed information to
    // accelerate processing. This information is typically immutable (e.g., pre-processed
    // inter-pod affinity selectors).
    type PodInfo struct {
    	Pod                        *v1.Pod
    	RequiredAffinityTerms      []AffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// owner: @ahutsunshine
    	// beta: v1.30
    	//
    	// Allows namespace indexer for namespace scope resources in apiserver cache to accelerate list operations.
    	StorageNamespaceIndex featuregate.Feature = "StorageNamespaceIndex"
    
    	// owner: @jsafrane
    	// kep: https://kep.k8s.io/1710
    	// alpha: v1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// IndexerFuncs is used for optimizing amount of watchers that
    	// needs to process an incoming event.
    	IndexerFuncs storage.IndexerFuncs
    
    	// Indexers is used to accelerate the list operation, falls back to regular list
    	// operation if no indexer found.
    	Indexers *cache.Indexers
    
    	// NewFunc is a function that creates new empty object storing a object of type Type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Introduced a new alpha feature gate, `SELinuxMount`, which can now be enabled to accelerate SELinux relabeling. ([#123157](https://github.com/kubernetes/kubernetes/pull/123157), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

            "//learning/brain/mlir/...",
            "//third_party/iree/...",
            "//third_party/odml/infra/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
            "//waymo/accelerator/alpine/tools/...",
            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. RELEASE.md

        *   Fix GPU delegate crash with C++17.
        *   Add 5D support to TFLite `strided_slice`.
        *   Fix error in delegation of `DEPTH_TO_SPACE` to `NNAPI` causing op not to
            be accelerated.
        *   Fix segmentation fault when running a model with LSTM nodes using
            `NNAPI` Delegate
        *   Fix `NNAPI` delegate failure when an operand for Maximum/Minimum
            operation is a scalar.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      # More details here - https://cloud.google.com/compute/docs/gpus/add-gpus#create-new-gpu-instance
      if [[ -n "${NODE_ACCELERATORS}" ]]; then
        accelerator_args+=(--maintenance-policy TERMINATE --restart-on-failure --accelerator "${NODE_ACCELERATORS}")
        gcloud="gcloud beta"
      fi
    
      local preemptible_minions=()
      if [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        preemptible_minions+=(--preemptible --maintenance-policy TERMINATE)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top