Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for CEIL (0.27 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // tensorflow/lite/kernels/range.cc.
      return std::is_integral<FloatOrInt>::value
                 ? ((std::abs(limit - start) + std::abs(delta) - 1) /
                    std::abs(delta))
                 : std::ceil(std::abs((limit - start) / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Neg(64|32|16|8) ...) => (NEG ...)
    (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)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

          // write, we won't see copying because of the new threshold. So it is always OK to use the
          // calculation here.
          return (int) Math.ceil(expectedSize / 0.75);
        }
        return Integer.MAX_VALUE; // any large value
      }
    
      /**
       * Creates a <i>mutable</i>, empty, insertion-ordered {@code LinkedHashMap} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

          // write, we won't see copying because of the new threshold. So it is always OK to use the
          // calculation here.
          return (int) Math.ceil(expectedSize / 0.75);
        }
        return Integer.MAX_VALUE; // any large value
      }
    
      /**
       * Creates a <i>mutable</i>, empty, insertion-ordered {@code LinkedHashMap} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpTrunc, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.PPC64, sys.S390X, sys.Wasm)
    	addF("math", "Ceil",
    		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",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_0 := v.Args[0]
    	// match: (FCEIL (FMOVDconst [x]))
    	// result: (FMOVDconst [math.Ceil(x)])
    	for {
    		if v_0.Op != OpPPC64FMOVDconst {
    			break
    		}
    		x := auxIntToFloat64(v_0.AuxInt)
    		v.reset(OpPPC64FMOVDconst)
    		v.AuxInt = float64ToAuxInt(math.Ceil(x))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64FFLOOR(v *Value) bool {
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. 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)
  9. api/openapi-spec/swagger.json

              "format": "int32",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top