Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,569 for precision (0.64 sec)

  1. tensorflow/compiler/mlir/lite/tests/reduce-type-precision.mlir

    // RUN: tf-opt %s -split-input-file -tfl-reduce-type-precision -verify-diagnostics
    
    func.func @testI8ToI4WithinRange() -> (tensor<4xi8>) {
      %0 = arith.constant dense<[-8, 0, 1, 7]> : tensor<4xi8>
      // expected-error@+1 {{type of return operand 0 ('tensor<4xi4>') doesn't match function result type ('tensor<4xi8>')}}
      func.return %0 : tensor<4xi8>
    }
    
    func.func @testI8ToI4NotWithinRange() -> tensor<4xi8> {
      %0 = arith.constant dense<[-10, 2, 3, 8]> : tensor<4xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 01 20:01:11 UTC 2023
    - 502 bytes
    - Viewed (0)
  2. hack/testdata/pod-with-precision.json

    {
      "apiVersion": "v1",
      "kind": "Pod",
      "metadata": {
        "name": "pod-with-precision"
      },
      "spec": {
        "activeDeadlineSeconds": 2147483647,
        "containers": [
          {
            "name": "kubernetes-pause",
            "image": "registry.k8s.io/pause:3.10"
          }
        ],
        "restartPolicy": "Never",
        "securityContext": {
          "supplementalGroups": [
            0,
            1000030003,
            2147483647
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 428 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item.json

    ymqytw <******@****.***> 1510695623 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item-v3.json

    Jefftree <******@****.***> 1694810813 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/math/big/sqrt.go

    		threeOnce.v = NewFloat(3.0)
    	})
    	return threeOnce.v
    }
    
    // Sqrt sets z to the rounded square root of x, and returns it.
    //
    // If z's precision is 0, it is changed to x's precision before the
    // operation. Rounding is performed according to z's precision and
    // rounding mode, but z's accuracy is not computed. Specifically, the
    // result of z.Acc() is undefined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

         *
         * If `isCurrentTimestampHighPrecision` is in `millisecond` precision, then all file timestamps will have `millisecond` precision
         * since we check all Java APIs that can return a high or a low precision, and we choose the one with the lowest precision.
         *
         * In case `isCurrentTimestampHighPrecision` is in the `second` precision, then we check also the provided timestamp.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VariantDependencyResolver.java

     * are resolved to variant-level precision, meaning that if resolved variant
     * is published to different coordinates than the declared component, the
     * variant coordinates are returned.
     *
     * <p>Implementations of this class may fall-back to component-level precision when
     * variant-level precision is not available for a given dependency.</p>
     */
    public interface VariantDependencyResolver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ComponentDependencyResolver.java

     * are resolved to component-level precision, meaning the coordinates of the resolved
     * variant's owning component are returned.
     */
    public interface ComponentDependencyResolver {
    
        /**
         * Determines the published coordinates for an external dependency to component-level precision.
         *
         * @return null if the external dependency could not be resolved.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue7740.go

    // This test computes the precision of the compiler's internal multiprecision floats.
    
    package main
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    )
    
    const ulp = (1.0 + (2.0 / 3.0)) - (5.0 / 3.0)
    
    func main() {
    	// adjust precision depending on compiler
    	var prec float64
    	switch runtime.Compiler {
    	case "gc":
    		prec = math.Inf(1) // exact precision using rational arithmetic
    	case "gccgo":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 25 18:53:24 UTC 2021
    - 736 bytes
    - Viewed (0)
  10. src/math/big/floatmarsh.go

    	}
    
    	return buf, nil
    }
    
    // GobDecode implements the [encoding/gob.GobDecoder] interface.
    // The result is rounded per the precision and rounding mode of
    // z unless z's precision is 0, in which case z is set exactly
    // to the decoded value.
    func (z *Float) GobDecode(buf []byte) error {
    	if len(buf) == 0 {
    		// Other side sent a nil or default value.
    		*z = Float{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top