Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assign_id (0.4 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Get each chunck's size along the dimension to split. It may contain
        // dynamic sizes and we need to update it if so.
        SmallVector<int64_t, 4> split_sizes;
        int64_t total_dim_size = 0;  // Total dimension size assigned to splits
        std::optional<int> dynamic_dim_index;
        split_sizes.reserve(
            mlir::cast<ShapedType>(split_sizes_attr.getType()).getNumElements());
        for (const auto &dim : llvm::enumerate(split_sizes_attr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - Fixed an EndpointSlice Controller hashing bug that could cause EndpointSlices to incorrectly handle Pods with duplicate IP addresses. For example this could happen when a new Pod reused an IP that was also assigned to a Pod in a completed state. ([#115907](https://github.com/kubernetes/kubernetes/pull/115907), [@qinqon](https://github.com/qinqon)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		return
    	}
    	if ir.IsAutoTmp(n) {
    		// Don't track temporary variables.
    		return
    	}
    	if n.Class == ir.PPARAMOUT {
    		// Don't track named output values.  This prevents return values
    		// from being assigned too early. See #14591 and #14762. TODO: allow this.
    		return
    	}
    	loc := ssa.LocalSlot{N: n, Type: n.Type(), Off: 0}
    	values, ok := s.f.NamedValues[loc]
    	if !ok {
    		s.f.Names = append(s.f.Names, &loc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Empty values are no longer assigned to undefined resources (CPU or memory) when storing the resources allocated to the pod in checkpoint. ([#117615](https://github.com/kubernetes/kubernetes/pull/117615), [@aheng-ch](https://github.com/aheng-ch))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top