Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for CEIL (0.07 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // following condition must hold true for padding to be `SAME`:
        // output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides[i])
        auto get_output_dim_for_same_padding = [](int64_t input_dim,
                                                  int64_t stride_dim) -> int64_t {
          return std::ceil(input_dim / static_cast<double>(stride_dim));
        };
        return output_height ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @ceil(%arg0: tensor<8x16xf32>) -> tensor<8x16xf32> {
      %0 = "tf.Ceil"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    
    // CHECK-LABEL: ceil
    // CHECK:  "tfl.ceil"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        }], [{
          TypeAttr::get(getResult().getType().cast<TensorType>().getElementType())
        }]>;
    }
    
    def TFL_CeilOp: TFL_Op<"ceil", [
        Pure,
        TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Ceil operator";
    
      let description = [{
        Returns element-wise ceil value of the input.
      }];
    
      let arguments = (ins TFL_FpTensor:$x);
    
      let results = (outs TFL_FpTensor:$y);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (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)])
    
    // Convert x * 1 to x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

     t})&&(h=u.split(" ").slice(2)),h.forEach(function(t,e){(t=(0|t)*n.ratio)&&ot(i,a[e],t),t&&!h[1^e]&&at(i,a[1^e])}),ot(i,"data-svg",this.icon||this.src)}}},Mn={};var zn=/<symbol(.*?id=(['"])(.*?)\2[^]*?<\/)symbol>/g,Dn={};function Pn(t){return Math.ceil(Math.max.apply(Math,Ne("[stroke]",t).map(function(t){return t.getTotalLength&&t.getTotalLength()||0}).concat([0])))}function Bn(t,e){return ot(t,"data-svg")===ot(e,"data-svg")}var On={},Hn={spinner:'<svg width="30" height="30" viewBox="0 0 30 30" ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "format": "int32",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "format": "int32",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SQRTSS", argLength: 1, reg: fp11, asm: "SQRTSS"},
    
    		// ROUNDSD rounds arg0 to an integer depending on auxint
    		// 0 means math.RoundToEven, 1 means math.Floor, 2 math.Ceil, 3 math.Trunc
    		// (The result is still a float64.)
    		// ROUNDSD instruction is only guaraneteed to be available if GOAMD64>=v2.
    		// For GOAMD64<v2, any use must be preceded by a successful check of runtime.x86HasSSE41.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // tensorflow/lite/kernels/range.cc.
      FloatOrInt diff = limit - start;
      if (std::is_integral<FloatOrInt>::value) {
        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
      return std::ceil(std::abs(diff / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	resourcesUsedRatio := float64(totalUsedCPUOfAllPods) / float64(float64(totalRequestedCPUOfAllPods)*target)
    
    	// i.e. .60 * 20 -> scaled down expectation.
    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    	tc1 := testCase{
    		minReplicas:             0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top