Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for truthiness (0.23 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        Converts a fallback tensor to a bool with the following rules:
    
        - For 0D tensors, truthiness is determined by comparing against a "zero"
          value. For numerical types it is the obvious zero. For strings it is the
          empty string.
    
        - For >0D tensors, truthiness is determined by looking at the number of
          elements. If has zero elements, then the result is false. Otherwise the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Converts a fallback tensor to a bool with the following rules:
    
        - For 0D tensors, truthiness is determined by comparing against a "zero"
          value. For numerical types it is the obvious zero. For strings it is the
          empty string.
    
        - For >0D tensors, truthiness is determined by looking at the number of
          elements. If has zero elements, then the result is false. Otherwise the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/syscall/js/js.go

    	switch v.ref {
    	case valueTrue.ref:
    		return true
    	case valueFalse.ref:
    		return false
    	default:
    		panic(&ValueError{"Value.Bool", v.Type()})
    	}
    }
    
    // Truthy returns the JavaScript "truthiness" of the value v. In JavaScript,
    // false, 0, "", null, undefined, and NaN are "falsy", and everything else is
    // "truthy". See https://developer.mozilla.org/en-US/docs/Glossary/Truthy.
    func (v Value) Truthy() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    Converts a tensor to a scalar predicate with the following rules:
    
    - For 0D tensors, truthiness is determined by comparing against a "zero"
      value. For numerical types it is the obvious zero. For strings it is the
      empty string.
    
    - For >0D tensors, truthiness is determined by looking at the number of
      elements. If has zero elements, then the result is false. Otherwise the
      result is true.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top