Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CEIL (0.09 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. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Acos", Func, 0},
    		{"Acosh", Func, 0},
    		{"Asin", Func, 0},
    		{"Asinh", Func, 0},
    		{"Atan", Func, 0},
    		{"Atan2", Func, 0},
    		{"Atanh", Func, 0},
    		{"Cbrt", Func, 0},
    		{"Ceil", Func, 0},
    		{"Copysign", Func, 0},
    		{"Cos", Func, 0},
    		{"Cosh", Func, 0},
    		{"Dim", Func, 0},
    		{"E", Const, 0},
    		{"Erf", Func, 0},
    		{"Erfc", Func, 0},
    		{"Erfcinv", Func, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		x := v_0
    		v.reset(OpAMD64ROLWconst)
    		v.AuxInt = int8ToAuxInt(8)
    		v.AddArg(x)
    		return true
    	}
    }
    func rewriteValueAMD64_OpCeil(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Ceil x)
    	// result: (ROUNDSD [2] x)
    	for {
    		x := v_0
    		v.reset(OpAMD64ROUNDSD)
    		v.AuxInt = int8ToAuxInt(2)
    		v.AddArg(x)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top