Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for SplitV (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  12,
    		},
    		{
    			name: "extended library split",
    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				objType := objectType(map[string]schema.Structural{
    					"str":       strType,
    					"separator": strType,
    				})
    				objType = withRule(objType, "self.str.split(self.separator) == []")
    				return &objType
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "";
    
      let arguments = (ins
        TF_StrTensor:$program_key,
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
        TF_Float32Tensor:$gains,
        TF_Int64Tensor:$splits,
        TF_Int32Tensor:$id_counts,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$num_replica,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    	if err != nil {
    		p.Ctxt.Diag("%v: constant %d too large", p, ins.imm, err)
    		return nil
    	}
    	if high == 0 {
    		return []*instruction{ins}
    	}
    
    	// Split into two additions, if possible.
    	// Do not split SP-writing instructions, as otherwise the recorded SP delta may be wrong.
    	if p.Spadj == 0 && ins.as == AADDI && ins.imm >= -(1<<12) && ins.imm < 1<<12-1 {
    		imm0 := ins.imm / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // return the same resource (after passing it through multiple identity ops).
      // Some subsequent ops use the original resource and others use the returned
      // version. Pipelining splits these uses across loop iterations resulting in
      // terrible things.
      result = EliminateResourceLoops(builder, symbol_table, loop_body_func);
      if (failed(result)) return signalPassFailure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	-bench regexp
    	    Run only those benchmarks matching a regular expression.
    	    By default, no benchmarks are run.
    	    To run all benchmarks, use '-bench .' or '-bench=.'.
    	    The regular expression is split by unbracketed slash (/)
    	    characters into a sequence of regular expressions, and each
    	    part of a benchmark's identifier must match the corresponding
    	    element in the sequence, if any. Possible parents of matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions | FileCheck --check-prefix=TF %s
    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions='target-opset=XLA' | FileCheck --check-prefix=XLA %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: [[PADDED_SHAPE:%.+]] = "tf.AddV2"([[PADDINGS_SUM]], [[INPUT_SHAPE]])
      // CHECK-DAG: [[PADDED_SHAPE_SPLITS:%.+]]:4 = "tf.Split"([[ZERO_I32]], [[PADDED_SHAPE]])
      // CHECK-DAG: [[BLOCK_SHAPE_SPLITS:%.+]]:2 = "tf.Split"([[ZERO_I32]], %arg1)
      // CHECK-DAG: [[OUTER_SHAPE_0:%.+]] = "tf.Div"([[PADDED_SHAPE_SPLITS]]#1, [[BLOCK_SHAPE_SPLITS]]#0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

        private static int compareModelVersions(String first, String second) {
            // we use a dedicated comparator because we control our model version scheme.
            String[] firstSegments = first.split("\\.");
            String[] secondSegments = second.split("\\.");
            for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
                int result = Long.valueOf(i < firstSegments.length ? firstSegments[i] : "0")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    			err = errors.Join(fmt.Errorf("found containerfs.inodesFree for soft eviction. ignoring"))
    			softContainerFsINodes = idx
    		}
    	}
    	// Either split disk case (containerfs=nodefs) or single filesystem
    	if (imageFs && separateContainerImageFs) || (!imageFs && !separateContainerImageFs) {
    		if hardContainerFsDisk != -1 {
    			thresholds[hardContainerFsDisk] = evictionapi.Threshold{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    // line. It panics (it's a test function) if some line has fewer tabs
    // than the first line.
    //
    // The purpose of this is to make it easier to read tests.
    func FixTabsOrDie(in string) string {
    	lines := bytes.Split([]byte(in), []byte{'\n'})
    	if len(lines[0]) == 0 && len(lines) > 1 {
    		lines = lines[1:]
    	}
    	// Create prefix made of tabs that we want to remove.
    	var prefix []byte
    	for _, c := range lines[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top