Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 604 for maximal (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding.mlir

    //   tile_assignment_dimensions: 2
    //   tile_assignment_devices: 0
    //   tile_assignment_devices: 1
    //
    //  Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    //  Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    //
    //  Serialized string:
    //   ""
    //  Proto debug string (empty but would equivalent to):
    //   type: REPLICATED
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/xla_sharding_util_test.cc

    }
    
    TEST(DecodeShardingAttributeTest, CheckMaximalShardString) {
      xla::OpSharding sharding;
      EXPECT_TRUE(
          DecodeShardingAttribute("{maximal device=0}", sharding).succeeded());
      EXPECT_TRUE(sharding.type() == sharding.MAXIMAL);
      EXPECT_EQ(1, sharding.tile_assignment_devices_size());
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/result-sharding.mlir

    //   tile_assignment_dimensions: 2
    //   tile_assignment_devices: 0
    //   tile_assignment_devices: 1
    //
    //  Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    //  Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    //
    //  Serialized string:
    //   ""
    //  Proto debug string (empty but would equivalent to):
    //   type: REPLICATED
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 23 18:56:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. src/slices/sort.go

    // MaxFunc returns the maximal value in x, using cmp to compare elements.
    // It panics if x is empty. If there is more than one maximal element
    // according to the cmp function, MaxFunc returns the first one.
    func MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E {
    	if len(x) < 1 {
    		panic("slices.MaxFunc: empty list")
    	}
    	m := x[0]
    	for i := 1; i < len(x); i++ {
    		if cmp(x[i], m) > 0 {
    			m = x[i]
    		}
    	}
    	return m
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:54:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	// Constant for the retry-after interval on rate limiting.
    	retryAfter = "1"
    
    	// How often inflight usage metric should be updated. Because
    	// the metrics tracks maximal value over period making this
    	// longer will increase the metric value.
    	inflightUsageMetricUpdatePeriod = time.Second
    )
    
    var (
    	nonMutatingRequestVerbs = sets.NewString("get", "list", "watch")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"note":                     "note is a human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.",
    	"type":                     "type is the type of this event (Normal, Warning), new types could be added in the future. It is machine-readable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/runtime/os_illumos.go

    		}
    
    		lflags := rctlblk_get_local_flags(unsafe.Pointer(rblk))
    		action := rctlblk_get_local_action(unsafe.Pointer(rblk))
    		if (lflags&_RCTL_LOCAL_MAXIMAL) == 0 && action == _RCTL_LOCAL_DENY {
    			// This is a finite (not maximal) value representing a
    			// cap (deny) action.
    			v := rctlblk_get_value(unsafe.Pointer(rblk))
    			if capval == 0 || capval > v {
    				capval = v
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1beta1/types.go

    	// +optional
    	Related *corev1.ObjectReference `json:"related,omitempty" protobuf:"bytes,9,opt,name=related"`
    
    	// note is a human-readable description of the status of this operation.
    	// Maximal length of the note is 1kB, but libraries should be prepared to
    	// handle values up to 64kB.
    	// +optional
    	Note string `json:"note,omitempty" protobuf:"bytes,10,opt,name=note"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1/types.go

    	// +optional
    	Related *corev1.ObjectReference `json:"related,omitempty" protobuf:"bytes,9,opt,name=related"`
    
    	// note is a human-readable description of the status of this operation.
    	// Maximal length of the note is 1kB, but libraries should be prepared to
    	// handle values up to 64kB.
    	// +optional
    	Note string `json:"note,omitempty" protobuf:"bytes,10,opt,name=note"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // a creation or deletion of related object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference related = 9;
    
      // note is a human-readable description of the status of this operation.
      // Maximal length of the note is 1kB, but libraries should be prepared to
      // handle values up to 64kB.
      // +optional
      optional string note = 10;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top