Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for topology (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

          auto& task_and_device = topology(x, y, z, core);
          if (task_and_device.task != -1)
            return DuplicateCoordinateErrorMsg(kTopologyAttr, x, y, z, core);
    
          task_and_device = {task, device};
        }
      }
    
      return topology;
    }
    
    // Determine execution devices when topology and device assignment are defined.
    // With a topology device coordinate to task and device mapping, device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

      }
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// alpha: v1.21
    	// beta: v1.23
    	//
    	// Enables topology aware hints for EndpointSlices
    	TopologyAwareHints featuregate.Feature = "TopologyAwareHints"
    
    	// owner: @PiotrProkop
    	// kep: https://kep.k8s.io/3545
    	// alpha: v1.26
    	//
    	// Allow fine-tuning of topology manager policies with alpha options.
    	// This feature gate:
    	// - will guard *a group* of topology manager options whose quality level is alpha.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

            CreateMissingAttributeMsg(tensorflow::kNumCoresPerReplicaAttr));
      int num_cores_per_replica = num_cores_per_replica_attr.getInt();
    
      auto topology_attr = cluster->getAttrOfType<StringAttr>("topology");
      if (!topology_attr)
        return cluster.emitOpError(
            CreateMissingAttributeMsg(tensorflow::kTopologyAttr));
    
      auto device_assignment_attr = cluster->getAttrOfType<mlir::ArrayAttr>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	emptyCPUSet := cpuset.New()
    
    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    	topo, err := topology.Discover(machineInfo)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to discover CPU topology info: %s", err)
    	}
    	reservedCPUSet, err := cpuset.Parse(cpus)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to parse reserved-cpus list: %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Added validation to ensure that if `service.kubernetes.io/topology-aware-hints` and `service.kubernetes.io/topology-mode` annotations are both set, they are set to the same value.Also Added deprecation warning if `service.kubernetes.io/topology-aware-hints` annotation is used. ([#116612](https://github.com/kubernetes/kubernetes/pull/116612), [@robscott](https://github.com/robscott))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        wll be replaced by `_replication_info="cluster"` and  `_xla_compile_device_type="TPU"`.
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Fixed Cronjob `status.lastSuccessfulTime` not populated by a manually triggered ([#118530](https://github.com/kubernetes/kubernetes/pull/118530), [@carlory](https://github.com/carlory))
    - Fixed Topology Aware Hints not working when the `topology.kubernetes.io/zone` label is added after Node creation. ([#117245](https://github.com/kubernetes/kubernetes/pull/117245), [@tnqn](https://github.com/tnqn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Graduated support for `minDomains` in pod topology spread constraints, to general availability.
      The `MinDomainsInPodTopologySpread` feature gate no longer has any effect, and the field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<I64Attr, "0">:$tpu_cancellation_closes_chips
      );
    
      let results = (outs
        Res<TF_StrTensor, [{A serialized tensorflow.tpu.TopologyProto that describes the TPU
    topology.}]>:$topology
      );
    }
    
    def TF_ConfigureTPUEmbeddingOp : TF_Op<"ConfigureTPUEmbedding", []> {
      let summary = "Sets up TPUEmbedding in a distributed TPU system.";
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top