Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,791 for greater (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/tfl_while_op_licm.mlir

        // cond
        {
        ^bb0(%condArg0: tensor<*xi32>, %condArg1: tensor<*xf32>):
          %0 = "arith.constant" () {value = dense<0> : tensor<i32>} : () -> tensor<i32> loc("Const")
          %1 = "tfl.greater"(%condArg0, %0) : (tensor<*xi32>, tensor<i32>) -> tensor<i1>
          "tfl.yield"(%1) : (tensor<i1>) -> ()
        },
        // body
        {
        ^bb0(%bodyArg0: tensor<*xi32>, %bodyArg1: tensor<*xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/while_gradients_test.cc

                                         ops::Multiply(scope_, inputs_[1], 2.0)};
    
      // Create loop: while (i > 0 && j > 0) i -= 1
      CreateLoop(
          [](const Scope& s, const std::vector<Output>& inputs, Output* output) {
            *output = ops::LogicalAnd(s, ops::Greater(s, inputs[0], 0.0),
                                      ops::Greater(s, inputs[1], 0.0));
            return s.status();
          },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 20:32:17 UTC 2017
    - 7.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/SignedBytes.java

          if (array[i] < min) {
            min = array[i];
          }
        }
        return min;
      }
    
      /**
       * Returns the greatest value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code byte} values
       * @return the value present in {@code array} that is greater than or equal to every other value
       *     in the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/path-params-numeric-validations.md

    Валидация также применима к значениям типа `float`.
    
    В этом случае становится важной возможность добавить ограничение <abbr title="greater than"><code>gt</code></abbr>, вместо <abbr title="greater than or equal"><code>ge</code></abbr>, поскольку в таком случае вы можете, например, создать ограничение, чтобы значение было больше `0`, даже если оно меньше `1`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/analyze-variables.mlir

        ^bb0(%arg1: tensor<*xi32>, %arg2: tensor<*x!tf_type.resource<tensor<*xi32>>>):
          %2 = "tf.ReadVariableOp"(%arg2) {dtype = i32} : (tensor<*x!tf_type.resource<tensor<*xi32>>>) -> tensor<*xi32>
          %3 = "tfl.greater"(%arg1, %2) : (tensor<*xi32>, tensor<*xi32>) -> tensor<i1>
          "tfl.yield"(%3) : (tensor<i1>) -> ()
      },  {
        ^bb0(%arg3: tensor<*xi32>, %arg4: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 11:49:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/cronjobcontroller.go

    func (o *CronJobControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    	if o.ConcurrentCronJobSyncs < 1 {
    		errs = append(errs, fmt.Errorf("concurrent-cron-job-syncs must be greater than 0, but got %d", o.ConcurrentCronJobSyncs))
    	}
    
    	return errs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 10:28:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/proxy/conntrack/conntrack.go

    }
    
    // ClearEntriesForPort is part of Interface
    func (ct *execCT) ClearEntriesForPort(port int, isIPv6 bool, protocol v1.Protocol) error {
    	if port <= 0 {
    		return fmt.Errorf("wrong port number. The port number must be greater than zero")
    	}
    	parameters := parametersWithFamily(isIPv6, "-D", "-p", protoStr(protocol), "--dport", strconv.Itoa(port))
    	err := ct.exec(parameters...)
    	if err != nil && !strings.Contains(err.Error(), noConnectionToDelete) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pkg/kubelet/types/pod_update.go

    }
    
    // SyncPodType classifies pod updates, eg: create, update.
    type SyncPodType int
    
    const (
    	// SyncPodSync is when the pod is synced to ensure desired state
    	SyncPodSync SyncPodType = iota
    	// SyncPodUpdate is when the pod is updated from source
    	SyncPodUpdate
    	// SyncPodCreate is when the pod is created from source
    	SyncPodCreate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    // is almost a reversed version of noderesources.leastRequestedScore.
    func mostRequestedScore(requested, capacity int64) int64 {
    	if capacity == 0 {
    		return 0
    	}
    	if requested > capacity {
    		// `requested` might be greater than `capacity` because pods with no
    		// requests get minimum values.
    		requested = capacity
    	}
    
    	return (requested * framework.MaxNodeScore) / capacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/math/sinh.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Floating-point hyperbolic sine and cosine.
    
    	The exponential func is called for arguments
    	greater in magnitude than 0.5.
    
    	A series is used for arguments smaller in magnitude than 0.5.
    
    	Cosh(x) is computed from the exponential func for
    	all arguments.
    */
    
    // Sinh returns the hyperbolic sine of x.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top