Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Floor (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Select0 (Div128u (Const64 [0]) lo y)) => (Div64u lo y)
    (Select1 (Div128u (Const64 [0]) lo y)) => (Mod64u lo y)
    
    (Not (ConstBool [c])) => (ConstBool [!c])
    
    (Floor       (Const64F [c])) => (Const64F [math.Floor(c)])
    (Ceil        (Const64F [c])) => (Const64F [math.Ceil(c)])
    (Trunc       (Const64F [c])) => (Const64F [math.Trunc(c)])
    (RoundToEven (Const64F [c])) => (Const64F [math.RoundToEven(c)])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<? x f32>
    }
    
    // CHECK-LABEL: testFloor
    func.func @testFloor(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.floor"(%arg0)
      %0 = "tfl.floor"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    // CHECK-LABEL: testGather
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Neg(32|64)F     ...) => (FNEG(S|D) ...)
    (Com(64|32|16|8) ...) => (MVN ...)
    
    // math package intrinsics
    (Abs         ...) => (FABSD   ...)
    (Sqrt        ...) => (FSQRTD  ...)
    (Ceil        ...) => (FRINTPD ...)
    (Floor       ...) => (FRINTMD ...)
    (Round       ...) => (FRINTAD ...)
    (RoundToEven ...) => (FRINTND ...)
    (Trunc       ...) => (FRINTZD ...)
    (FMA       x y z) => (FMADDD z x y)
    
    (Sqrt32 ...) => (FSQRTS ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpCeil, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.PPC64, sys.S390X, sys.Wasm)
    	addF("math", "Floor",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpFloor, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.PPC64, sys.S390X, sys.Wasm)
    	addF("math", "Round",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        @CheckForNull
        public K lower(@ParametricNullness K e) {
          return map().lowerKey(e);
        }
    
        @Override
        @CheckForNull
        public K floor(@ParametricNullness K e) {
          return map().floorKey(e);
        }
    
        @Override
        @CheckForNull
        public K ceiling(@ParametricNullness K e) {
          return map().ceilingKey(e);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        @CheckForNull
        public K lower(@ParametricNullness K e) {
          return map().lowerKey(e);
        }
    
        @Override
        @CheckForNull
        public K floor(@ParametricNullness K e) {
          return map().floorKey(e);
        }
    
        @Override
        @CheckForNull
        public K ceiling(@ParametricNullness K e) {
          return map().ceilingKey(e);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_0 := v.Args[0]
    	// match: (FFLOOR (FMOVDconst [x]))
    	// result: (FMOVDconst [math.Floor(x)])
    	for {
    		if v_0.Op != OpPPC64FMOVDconst {
    			break
    		}
    		x := auxIntToFloat64(v_0.AuxInt)
    		v.reset(OpPPC64FMOVDconst)
    		v.AuxInt = float64ToAuxInt(math.Floor(x))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64FGreaterEqual(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top