Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isChan (0.24 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    		if !(isSamePtr(p1, p2) && sizeof(t2) == 8 && is64BitFloat(t1) && !math.IsNaN(math.Float64frombits(uint64(x)))) {
    			break
    		}
    		v.reset(OpConst64F)
    		v.AuxInt = float64ToAuxInt(math.Float64frombits(uint64(x)))
    		return true
    	}
    	// match: (Load <t1> p1 (Store {t2} p2 (Const32 [x]) _))
    	// cond: isSamePtr(p1,p2) && sizeof(t2) == 4 && is32BitFloat(t1) && !math.IsNaN(float64(math.Float32frombits(uint32(x))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. RELEASE.md

        *   New endpoints in `tf.debugging` namespace:
            `tf.debugging.check_numerics`, `tf.debugging.is_finite`,
            `tf.debugging.is_inf`, `tf.debugging.is_nan`.
        *   New endpoints in `tf.dtypes` namespace: `tf.dtypes.as_string`.
        *   New endpoints in `tf.io` namespace: `tf.io.decode_base64`,
            `tf.io.decode_compressed`, `tf.io.decode_json_example`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_IsNanOp : TF_Op<"IsNan", [Pure, SameOperandsAndResultShape]> {
      let summary = "Returns which elements of x are NaN.";
    
      let description = [{
    @compatibility(numpy)
    Equivalent to np.isnan
    @end_compatibility
    
    Example:
    
    ```python
    x = tf.constant([5.0, np.nan, 6.8, np.nan, np.inf])
    tf.math.is_nan(x) ==> [False, True, False, True, False]
    ```
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top