Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for greatest (0.29 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_GreaterOp : TFL_Op<"greater", [
        ResultsBroadcastableShape,
        ComparisonOpSameElementTypeConstraint,
        TFL_OperandsHaveSameShapesOrBroadcastableShape<[0, 1], 4>,
        QuantizableResult,
        Pure]> {
      let summary = "Greater operator";
    
      let description = [{
        Element-wise greater operation.
      }];
    
      let arguments = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    	return rr, true
    }
    
    // ExtrelocSimple creates a simple external relocation from r, with the same
    // symbol and addend.
    func ExtrelocSimple(ldr *loader.Loader, r loader.Reloc) loader.ExtReloc {
    	var rr loader.ExtReloc
    	rs := r.Sym()
    	rr.Xsym = rs
    	rr.Xadd = r.Add()
    	rr.Type = r.Type()
    	rr.Size = r.Siz()
    	return rr
    }
    
    // ExtrelocViaOuterSym creates an external relocation from r targeting the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    			rev2 := newRevisionOrDie(set2, 3)
    			tests := []testcase{
    				{
    					name:            "creates initial revision",
    					existing:        nil,
    					set:             set,
    					expectedCount:   1,
    					expectedCurrent: rev0,
    					expectedUpdate:  rev0,
    					err:             false,
    				},
    				{
    					name:            "creates revision on update",
    					existing:        []*apps.ControllerRevision{rev0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    	return MakeMapWithSize(typ, 0)
    }
    
    // MakeMapWithSize creates a new map with the specified type
    // and initial space for approximately n elements.
    func MakeMapWithSize(typ Type, n int) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		},
    		// inputParts - 3.
    		// Case with valid parts,but parts are unsorted.
    		// Part size greater than 5 MiB.
    		{
    			[]CompletePart{
    				{ETag: validPartMD5, PartNumber: 6},
    				{ETag: validPartMD5, PartNumber: 5},
    			},
    		},
    		// inputParts - 4.
    		// Case with valid part.
    		// Part size greater than 5 MiB.
    		{
    			[]CompletePart{
    				{ETag: validPartMD5, PartNumber: 5},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MIN_NODES} -lt 0 ]]; then
        echo "AUTOSCALER_MIN_NODES must be greater or equal 0"
        exit 2
      fi
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MAX_NODES} -lt ${NUM_MIGS} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

               << "rank greater than 2.\n";
      }
    
      if (kernel_tensor_shape.size() <= 2) {
        return op.emitOpError()
               << "kernel tensor argument is " << kernel_tensor_shape.size()
               << " which is invalid, since kernel tensor argument must has a "
               << "rank greater than 2.\n";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

      /** How long after the last write an entry becomes a candidate for refresh. */
      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

      /** How long after the last write an entry becomes a candidate for refresh. */
      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    
    
    func.func @greater(%arg0: tensor<8x16xf32>, %arg1: tensor<8x16xf32>) -> tensor<8x16xi1> {
      %0 = "tf.Greater"(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xi1>
      func.return %0 : tensor<8x16xi1>
    
    // CHECK-LABEL: greater
    // CHECK:  tfl.greater(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xi1>
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top