Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ABS (0.04 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    cument,pt,function(t){if(i&&i(),ne(t)){var s=re(t),a="tagName"in t.target?t.target:t.target.parentNode;i=Gt(document,mt+" "+bt,function(t){var e=re(t),r=e.x,o=e.y;(a&&r&&100<Math.abs(s.x-r)||o&&100<Math.abs(s.y-o))&&setTimeout(function(){var t,e,i,n;Kt(a,"swipe"),Kt(a,"swipe"+(t=s.x,e=s.y,i=r,n=o,Math.abs(t-i)>=Math.abs(e-n)?0<t-i?"Left":"Right":0<e-n?"Up":"Down"))})}),"touchstart"==pt&&(Ve(document.body,"cursor","pointer"),Gt(document,mt+" "+bt,function(){return setTimeout(function(){return Ve(...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Refer to the implementation in
      // 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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testValidIfRegionOp(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
      %neg = "tf.Neg"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
      %0 = "tf.IfRegion"(%arg0) ({
         %t = "tf.Abs"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
         "tf.Yield"(%t) : (tensor<2xf32>) -> ()
        }, {
         %e = "tf.Acos"(%neg) : (tensor<2xf32>) -> tensor<2xf32>
         "tf.Yield"(%e) : (tensor<2xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// UMULH <Xd>, <Xn>, <Xm>
    	{0xffe08000, 0x9bc00000, UMULH, instArgs{arg_Xd, arg_Xn, arg_Xm}, nil},
    	// ABS <V><d>, <V><n>
    	{0xff3ffc00, 0x5e20b800, ABS, instArgs{arg_Vd_22_2__D_3, arg_Vn_22_2__D_3}, nil},
    	// ABS <Vd>.<t>, <Vn>.<t>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // Refer to the implementation in
      // 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.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    }
    
    // CHECK-LABEL: testUnaryIdempotent
    func.func @testUnaryIdempotent(%arg0: tensor<4xf32>) -> (tensor<4xf32>) {
      // CHECK: tf.Abs
      // CHECK-NOT: tf.Abs
      %0 = "tf.Abs"(%arg0) : (tensor<4xf32>) -> tensor<4xf32>
      %1 = "tf.Abs"(%0) : (tensor<4xf32>) -> tensor<4xf32>
      func.return %1 : tensor<4xf32>
    }
    
    // CHECK-LABEL: testInvolution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    // assuming they were originally relative to dir,
    // and returns that new list.
    func mkAbsFiles(dir string, files []string) []string {
    	abs := make([]string, len(files))
    	for i, f := range files {
    		if !filepath.IsAbs(f) {
    			f = filepath.Join(dir, f)
    		}
    		abs[i] = f
    	}
    	return abs
    }
    
    // passLongArgsInResponseFiles modifies cmd such that, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  %3 = "tf.MaxPool"(%arg0)
    // CHECK:  %4 = "tf.MaxPool"(%arg0)
    }
    
    func.func @abs(%arg0: tensor<8x16xf32>) -> tensor<8x16xf32> {
      %0 = "tf.Abs"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
      func.return %0 : tensor<8x16xf32>
    
    // CHECK-LABEL:abs
    // CHECK:  "tfl.abs"(%arg0) : (tensor<8x16xf32>) -> tensor<8x16xf32>
    }
    
    func.func @any(%arg0: tensor<2x2xi1>, %arg1: tensor<i32>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    
    //===----------------------------------------------------------------------===//
    // TFL op definitions.
    //===----------------------------------------------------------------------===//
    def TFL_AbsOp : TFL_Op<"abs", [
        Pure,
        QuantizableResult,
        SameOperandsAndResultShape]> {
      let summary = "Absolute value operator";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	perPodRequested := totalRequestedCPUOfAllPods / startPods
    
    	// Force a minimal scaling event by satisfying  (tolerance < 1 - resourcesUsedRatio).
    	target := math.Abs(1/(requestedToUsed*(1-defaultTestingTolerance))) + .01
    	finalCPUPercentTarget := int32(target * 100)
    	resourcesUsedRatio := float64(totalUsedCPUOfAllPods) / float64(float64(totalRequestedCPUOfAllPods)*target)
    
    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