Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CEIL (0.06 sec)

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

    	return false
    }
    func rewriteValuegeneric_OpCeil(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Ceil (Const64F [c]))
    	// result: (Const64F [math.Ceil(c)])
    	for {
    		if v_0.Op != OpConst64F {
    			break
    		}
    		c := auxIntToFloat64(v_0.AuxInt)
    		v.reset(OpConst64F)
    		v.AuxInt = float64ToAuxInt(math.Ceil(c))
    		return true
    	}
    	return false
    }
    func rewriteValuegeneric_OpCom16(v *Value) bool {
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr SrcT = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedResultTypeAttr DstT = TF_DerivedResultTypeAttr<0>;
    
      let hasFolder = 1;
    }
    
    def TF_CeilOp : TF_Op<"Ceil", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Returns element-wise smallest integer not less than x.";
    
      let arguments = (ins
        TF_FloatTensor:$x
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. RELEASE.md

        *   New endpoints in tf.math namespace: `tf.math.acos`, `tf.math.acosh`,
            `tf.math.add`, `tf.math.asin`, `tf.math.asinh`, `tf.math.atan`,
            `tf.math.atan2`, `tf.math.atanh`, `tf.math.betainc`, `tf.math.ceil`,
            `tf.math.cos`, `tf.math.cosh`, `tf.math.digamma`, `tf.math.equal`,
            `tf.math.erfc`, `tf.math.exp`, `tf.math.expm1`, `tf.math.floor`,
            `tf.math.greater`, `tf.math.greater_equal`, `tf.math.igamma`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top