Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for Approximates (0.41 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testGelu
    func.func @testGelu(%arg0: tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32> {
      // CHECK: "tfl.gelu"(%arg0)
      %0 = "tfl.gelu"(%arg0) {approximate = false}: (tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32>
      func.return %0 : tensor<1x2x3x4x5xf32>
    }
    
    // -----
    
    // test invalid GELU input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	// Envoy enforces a re2.max_program_size.error_level re2 program size is not the same as length,
    	// but it is always *larger* than length. Because goland does not have a way to evaluate the
    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Computes GELU activation function element-wise.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, QI8, QUI8]>:$input,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$approximate
      );
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8]>:$output);
    
      let hasOptions = 1;
    }
    
    def TFL_DynamicUpdateSliceOp: TFL_Op<"dynamic_update_slice", [
        Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-63530`](https://youtrack.jetbrains.com/issue/KT-63530) K2: Disable passing data flow info from in-place lambdas
    - [`KT-65377`](https://youtrack.jetbrains.com/issue/KT-65377) K2: "Argument type mismatch" caused by approximated captured type argument of generic type
    - [`KT-59400`](https://youtrack.jetbrains.com/issue/KT-59400) K2: Missing CANNOT_INFER_VISIBILITY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    //
    // Ideally we should delay for at least 1 RTT + epsilon so the client has
    // a chance to read the GOAWAY and stop sending messages. Measuring RTT
    // is hard, so we approximate with 1 second. See golang.org/issue/18701.
    //
    // This is a var so it can be shorter in tests, where all requests uses the
    // loopback interface making the expected RTT very small.
    //
    // TODO: configurable?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.23.md

    ## Changes by Kind
    
    ### API Change
    
    - Kubernetes 1.23 is now built with go1.19.4. To match behavior of previous Kubernetes 1.23 patch releases:
      - `kube-apiserver` defaults the GOGC setting to 63, to approximate go1.17 garbage collection memory performance in heavily loaded API servers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let hasVerifier = 1;
    }
    
    def TF_ApproxTopKOp : TF_Op<"ApproxTopK", [Pure]> {
      let summary = [{
    Returns min/max k values and their indices of the input operand in an approximate manner.
      }];
    
      let description = [{
    See https://arxiv.org/abs/2206.14286 for the algorithm details.
    This op is only optimized on TPU currently.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    histograms.createHistogram('mean_pixels_approximated',tr.b.Unit.byName.normalizedPercentage_smallerIsBetter,100*tr.b.math.Statistics.mean(approximatedPixelPercentages),{description:'Percentage of pixels that were approximated '+'(checkerboarding, low-resolution tiles, etc.).',summaryOptions:{},});histograms.createHistogram('mean_pixels_checkerboarded',tr.b.Unit.byName.normalizedPercentage_smallerIsBetter,100*tr.b.math.Statistics.mean(checkerboardedPixelPercentages)...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top