Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Floor (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        TF_VariantTensor:$handle
      );
    
      TF_DerivedOperandTypeListAttr Targuments = TF_DerivedOperandTypeListAttr<1>;
    }
    
    def TF_FloorOp : TF_Op<"Floor", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Returns element-wise largest integer not greater 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)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    }
    func rewriteValuegeneric_OpFloor(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Floor (Const64F [c]))
    	// result: (Const64F [math.Floor(c)])
    	for {
    		if v_0.Op != OpConst64F {
    			break
    		}
    		c := auxIntToFloat64(v_0.AuxInt)
    		v.reset(OpConst64F)
    		v.AuxInt = float64ToAuxInt(math.Floor(c))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. RELEASE.md

            `tf.acosh`, `tf.add`, `tf.as_string`, `tf.asin`, `tf.asinh`, `tf.atan`,
            `tf.atan2`, `tf.atanh`, `tf.cos`, `tf.cosh`, `tf.equal`, `tf.exp`,
            `tf.floor`, `tf.greater`, `tf.greater_equal`, `tf.less`,
            `tf.less_equal`, `tf.log`, `tf.logp1`, `tf.logical_and`,
            `tf.logical_not`, `tf.logical_or`, `tf.maximum`, `tf.minimum`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Exp2", Func, 0},
    		{"Expm1", Func, 0},
    		{"FMA", Func, 14},
    		{"Float32bits", Func, 0},
    		{"Float32frombits", Func, 0},
    		{"Float64bits", Func, 0},
    		{"Float64frombits", Func, 0},
    		{"Floor", Func, 0},
    		{"Frexp", Func, 0},
    		{"Gamma", Func, 0},
    		{"Hypot", Func, 0},
    		{"Ilogb", Func, 0},
    		{"Inf", Func, 0},
    		{"IsInf", Func, 0},
    		{"IsNaN", Func, 0},
    		{"J0", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		y := v_1
    		z := v_2
    		v.reset(OpAMD64VFMADD231SD)
    		v.AddArg3(z, x, y)
    		return true
    	}
    }
    func rewriteValueAMD64_OpFloor(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Floor x)
    	// result: (ROUNDSD [1] x)
    	for {
    		x := v_0
    		v.reset(OpAMD64ROUNDSD)
    		v.AuxInt = int8ToAuxInt(1)
    		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