Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for float2 (0.21 sec)

  1. doc/go_spec.html

    yields a typed constant.
    </p>
    
    <pre>
    uint(iota)               // iota value of type uint
    float32(2.718281828)     // 2.718281828 of type float32
    complex128(1)            // 1.0 + 0.0i of type complex128
    float32(0.49999999)      // 0.5 of type float32
    float64(-1e-1000)        // 0.0 of type float64
    string('x')              // "x" of type string
    string(0x266c)           // "♬" of type string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    assertArrayEquals(double[], double[], double); public static void assertArrayEquals(String, float[], float[], float) throws internal.ArrayComparisonFailu; public static void assertArrayEquals(float[], float[], float); private static void internalArrayEquals(String, Object, Object) throws internal.ArrayComparisonFailu; public static void assertEquals(String, double, double, double); public static void assertEquals(String, float, float, float); public static void assertNotEquals(String, float, float, float); private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	// float
    	{types.TFLOAT64, types.TFLOAT32}: {ssa.OpCvt64Fto32F, ssa.OpCopy, types.TFLOAT32},
    	{types.TFLOAT64, types.TFLOAT64}: {ssa.OpRound64F, ssa.OpCopy, types.TFLOAT64},
    	{types.TFLOAT32, types.TFLOAT32}: {ssa.OpRound32F, ssa.OpCopy, types.TFLOAT32},
    	{types.TFLOAT32, types.TFLOAT64}: {ssa.OpCvt32Fto64F, ssa.OpCopy, types.TFLOAT64},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Type element_type = input_ty.getElementType();
    
        // Only float, int, and complex types are currently supported.
        if (!mlir::isa<FloatType>(element_type) &&
            !mlir::isa<IntegerType>(element_type) &&
            !mlir::isa<ComplexType>(element_type)) {
          return rewriter.notifyMatchFailure(
              op, "element type must be float, int, or complex type");
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    Row:P("gridRow",[["row",["gridRow"]]]),gridRowStart:P("gridRowStart",[["row-start",["gridRowStart"]]]),gridRowEnd:P("gridRowEnd",[["row-end",["gridRowEnd"]]]),float:({addUtilities:i})=>{i({".float-start":{float:"inline-start"},".float-end":{float:"inline-end"},".float-right":{float:"right"},".float-left":{float:"left"},".float-none":{float:"none"}})},clear:({addUtilities:i})=>{i({".clear-start":{clear:"inline-start"},".clear-end":{clear:"inline-end"},".clear-left":{clear:"left"},".clear-right":{...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.30.md

    ### Added
    - github.com/fxamacker/cbor/v2: [v2.6.0](https://github.com/fxamacker/cbor/tree/v2.6.0)
    - github.com/pkg/diff: [20ebb0f](https://github.com/pkg/diff/tree/20ebb0f)
    - github.com/x448/float16: [v0.8.4](https://github.com/x448/float16/tree/v0.8.4)
    - golang.org/x/telemetry: b75ee88
    - k8s.io/gengo/v2: 51d4e06
    - sigs.k8s.io/knftables: v0.0.14
    
    ### Changed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Neg32F x)
    	// result: (PXOR x (MOVSSconst <typ.Float32> [float32(math.Copysign(0, -1))]))
    	for {
    		x := v_0
    		v.reset(Op386PXOR)
    		v0 := b.NewValue0(v.Pos, Op386MOVSSconst, typ.Float32)
    		v0.AuxInt = float32ToAuxInt(float32(math.Copysign(0, -1)))
    		v.AddArg2(x, v0)
    		return true
    	}
    }
    func rewriteValue386_OpNeg64F(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    For example:
    
    ```Python
    from contextlib import asynccontextmanager
    
    from fastapi import FastAPI
    
    
    def fake_answer_to_everything_ml_model(x: float):
        return x * 42
    
    
    ml_models = {}
    
    
    @asynccontextmanager
    async def lifespan(app: FastAPI):
        # Load the ML model
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    			if maxRatioFound && minQuantityFound && maxQuantityFound {
    				maxRatioValue := float64(maxRatio.Value())
    				minQuantityValue := minQuantity.Value()
    				maxQuantityValue := maxQuantity.Value()
    				if maxRatio.Value() < resource.MaxMilliValue && minQuantityValue < resource.MaxMilliValue && maxQuantityValue < resource.MaxMilliValue {
    					maxRatioValue = float64(maxRatio.MilliValue()) / 1000
    					minQuantityValue = minQuantity.MilliValue()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %1 = mhlo.remainder %arg0, %arg1 : tensor<10x10xbf16>
      %2 = mhlo.compare  NE, %1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
      %3 = mhlo.compare  LT, %1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
      %4 = mhlo.compare  LT, %arg1, %0,  FLOAT : (tensor<10x10xbf16>, tensor<10x10xbf16>) -> tensor<10x10xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top