Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for isChan (0.32 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    }
    
    bool IsSign(APInt a, APInt sign) {
      if (a.isZero()) return a == sign;
      if (a.isNegative()) return sign == -1;
      return sign == 1;
    }
    
    bool IsSign(APFloat a, APFloat sign) {
      if (a.isNaN() || a.isZero()) return a == sign;
      if (a.isNegative()) return sign.isExactlyValue(-1.0);
      return sign.isExactlyValue(1.0);
    }
    
    bool IsDenseSplatIntAttr(ElementsAttr float_or_int) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. src/reflect/type.go

    			ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
    			return ti.(Type)
    		}
    	}
    
    	// Make a channel type.
    	var ichan any = (chan unsafe.Pointer)(nil)
    	prototype := *(**chanType)(unsafe.Pointer(&ichan))
    	ch := *prototype
    	ch.TFlag = abi.TFlagRegularMemory
    	ch.Dir = abi.ChanDir(dir)
    	ch.Str = resolveReflectName(newName(s, "", false, false))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (FMOVDstore [off] {sym} ptr (MTVSRD x) mem) => (MOVDstore [off] {sym} ptr x mem)
    (MOVDstore [off] {sym} ptr (MFVSRD x) mem) => (FMOVDstore [off] {sym} ptr x mem)
    
    (MTVSRD (MOVDconst [c])) && !math.IsNaN(math.Float64frombits(uint64(c))) => (FMOVDconst [math.Float64frombits(uint64(c))])
    (MFVSRD (FMOVDconst [c])) => (MOVDconst [int64(math.Float64bits(c))])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. go.sum

    github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0=
    github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=
    github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
    github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (MTVSRD (MOVDconst [c]))
    	// cond: !math.IsNaN(math.Float64frombits(uint64(c)))
    	// result: (FMOVDconst [math.Float64frombits(uint64(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if !(!math.IsNaN(math.Float64frombits(uint64(c)))) {
    			break
    		}
    		v.reset(OpPPC64FMOVDconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    .length-1}else e.some(f=>o(f))?n+=u([")"]):o("[")?n+=u(["]"]):["+","-","*","/"].includes(c)&&!["(","+","-","*","/",","].includes(a())?n+=` ${c} `:n+=c}return n.replace(/\s+/g," ")})}function as(i){return i.startsWith("url(")}function os(i){return!isNaN(Number(i))||ss(i)}function lr(i){return i.endsWith("%")&&os(i.slice(0,-1))||ss(i)}function ur(i){return i==="0"||new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${Mb}$`).test(i)||ss(i)}function Pu(i){return Bb.has(i)}function Du(i){let e=yi(L(i));for(let...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. 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)
  9. 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