Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 343 for topology_1 (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @empty_func() {
        func.return
      }
    }
    
    // -----
    
    // Tests `tf_device.cluster_func` with missing `topology` attribute.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/policy_options.go

    	if !alphaOptions.Has(option) && !betaOptions.Has(option) && !stableOptions.Has(option) {
    		return fmt.Errorf("unknown Topology Manager Policy option: %q", option)
    	}
    
    	if alphaOptions.Has(option) && !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.TopologyManagerPolicyAlphaOptions) {
    		return fmt.Errorf("Topology Manager Policy Alpha-level Options not enabled, but option %q provided", option)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// DeprecatedAnnotationTopologyAwareHints can be used to enable or disable
    	// Topology Aware Hints for a Service. This may be set to "Auto" or
    	// "Disabled". Any other value is treated as "Disabled". This annotation has
    	// been deprecated in favor of the "service.kubernetes.io/topology-mode"
    	// annotation.
    	DeprecatedAnnotationTopologyAwareHints = "service.kubernetes.io/topology-aware-hints"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/ifrt/rewrite_cluster_to_ifrt_call.mlir

      %0 = "tf_device.cluster_func"(%arg0) {_producer_name = "UNKNOWN", func = @_func, input_sharding_configuration = [""], num_cores_per_replica = 1 : i64, device_assignment = [], topology = "", output_sharding_configuration = [""], step_marker_location = "STEP_MARK_AT_ENTRY", use_spmd_for_xla_partitioning = false, use_tpu = true} : (tensor<1x3xf32>) -> (tensor<1x3xf32>)
      return %0 : tensor<1x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 17 07:28:40 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // endpoint.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference targetRef = 4;
    
      // topology contains arbitrary topology information associated with the
      // endpoint. These key/value pairs must conform with the label format.
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
      // Topology may include a maximum of 16 key/value pairs. This includes, but
      // is not limited to the following well known keys:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/util/label/label.go

    // It is to remove dependency on k8s.io/api/core/v1
    const (
    	LabelHostname = "kubernetes.io/hostname"
    
    	LabelTopologyZone    = "topology.kubernetes.io/zone"
    	LabelTopologySubzone = "topology.istio.io/subzone"
    	LabelTopologyRegion  = "topology.kubernetes.io/region"
    )
    
    // AugmentLabels adds additional labels to the those provided.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"targetRef":  "targetRef is a reference to a Kubernetes object that represents this endpoint.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelTopologyZone   = "topology.kubernetes.io/zone"
    	LabelTopologyRegion = "topology.kubernetes.io/region"
    
    	// These label have been deprecated since 1.17, but will be supported for
    	// the foreseeable future, to accommodate things like long-lived PVs that
    	// use them.  New users should prefer the "topology.kubernetes.io/*"
    	// equivalents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/runtime_lowering_tpu.mlir

        // CHECK: %compilation_status, %program = "tf._TPUCompileMlir"()
        "tf_device.cluster_func"() {_xla_compile_device_type = "TPU", _replication_info = "cluster0", func = @empty_func, num_cores_per_replica = 1, step_marker_location = "", topology = "", device_assignment = [], input_sharding_configuration = [], output_sharding_configuration = [], use_spmd_for_xla_partitioning = false} : () -> ()
        func.return
      }
      func.func @empty_func() {
        func.return
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    				if rawMgr.policy.Name() == string(PolicyNone) {
    					if rawMgr.topology != nil {
    						t.Errorf("Expected topology to be nil for 'none' policy. Have: %q", rawMgr.topology)
    					}
    				}
    				if rawMgr.policy.Name() != string(PolicyNone) {
    					if rawMgr.topology == nil {
    						t.Errorf("Expected topology to be non-nil for policy '%v'. Have: %q", rawMgr.policy.Name(), rawMgr.topology)
    					}
    				}
    			}
    		})
    
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
Back to top