Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 156 for fabs (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/DefaultExternalResourceFileStore.java

        private static final Grouper<String> GROUPER = new Grouper<String>() {
            @Override
            public String determineGroup(String s) {
                return String.valueOf(Math.abs(s.hashCode()) % 100);
            }
    
            @Override
            public int getNumberOfGroupingDirs() {
                return NUMBER_OF_GROUPING_DIRS;
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/a.out.go

    	ARLLG
    	ARNSBG
    	ARXSBG
    	AROSBG
    	ARNSBGT
    	ARXSBGT
    	AROSBGT
    	ARISBG
    	ARISBGN
    	ARISBGZ
    	ARISBGNZ
    	ARISBHG
    	ARISBLG
    	ARISBHGZ
    	ARISBLGZ
    
    	// floating point
    	AFABS
    	AFADD
    	AFADDS
    	AFCMPO
    	AFCMPU
    	ACEBR
    	AFDIV
    	AFDIVS
    	AFMADD
    	AFMADDS
    	AFMOVD
    	AFMOVS
    	AFMSUB
    	AFMSUBS
    	AFMUL
    	AFMULS
    	AFNABS
    	AFNEG
    	AFNEGS
    	ALEDBR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        //
        // We don't have a frac(x) primitive in XLA and computing it is tricky, but
        // because abs(sin(pi * x)) = abs(sin(pi * abs(x))), it's good enough for
        // our purposes to use abs(frac(x)) = abs(x) - floor(abs(x)).
        //
        // Furthermore, pi * abs(frac(x)) loses precision when abs(frac(x)) is close
        // to 1.  To remedy this, we can use the fact that sin(pi * x) in the domain
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/search/search.go

    	// We need to preserve the ./ for pattern matching
    	// and in the returned import paths.
    
    	if len(modRoots) > 1 {
    		abs, err := filepath.Abs(dir)
    		if err != nil {
    			m.AddError(err)
    			return
    		}
    		var found bool
    		for _, modRoot := range modRoots {
    			if modRoot != "" && str.HasFilePathPrefix(abs, modRoot) {
    				found = true
    			}
    		}
    		if !found {
    			plural := ""
    			if len(modRoots) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableSortedSet.java

        // TODO(jlevy): For optimal performance, use a binary search when
        // targets.size() < size() / log(size())
        // TODO(kevinb): see if we can share code with OrderedIterator after it
        // graduates from labs.
        if (targets instanceof Multiset) {
          targets = ((Multiset<?>) targets).elementSet();
        }
        if (!SortedIterables.hasSameComparator(comparator(), targets) || (targets.size() <= 1)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/argposition_test.go

    				v.t.Errorf(errorMessage.String())
    			}
    		}
    	}
    	return v
    }
    
    func TestArgumentsPositions(t *testing.T) {
    	testenv.MustHaveCGO(t)
    	testenv.MustHaveExec(t)
    
    	testdata, err := filepath.Abs("testdata")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tmpPath := t.TempDir()
    
    	dir := filepath.Join(tmpPath, "src", "testpositions")
    	if err := os.MkdirAll(dir, 0755); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

        // decrement until it's <= the true value
        while (StrictMath.pow(2.0, trueLog2) > d) {
          trueLog2 = StrictMath.nextAfter(trueLog2, Double.NEGATIVE_INFINITY);
        }
        if (StrictMath.abs(StrictMath.pow(2.0, trueLog2) - d)
            > StrictMath.abs(StrictMath.pow(2.0, StrictMath.nextUp(trueLog2)) - d)) {
          trueLog2 = StrictMath.nextUp(trueLog2);
        }
        return trueLog2;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def : Pat<(TF_ApproximateEqualOp:$result $x, $y, $tolerance),
              (CHLO_BroadcastCompareOp
               (MHLO_AbsOp:$abs (MHLO_SubtractOp $x, $y)),
               (CastValueToElementType $result, (MHLO_ConstantOp $tolerance), $abs),
               (NullDenseI64ArrayAttr),
               CHLO_ComparisonDirectionValue<"LT">,
               (CHLO_DEFAULT_COMPARISON_TYPE))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    	SYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_PROFIL               = 44  // { int|sys||profil(char *samples, size_t size, u_long offset, u_int scale); }
    	SYS_KTRACE               = 45  // { int|sys||ktrace(const char *fname, int ops, int facs, pid_t pid); }
    	SYS_GETGID               = 47  // { gid_t|sys||getgid_with_egid(void); }
    	SYS___GETLOGIN           = 49  // { int|sys||__getlogin(char *namebuf, size_t namelen); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top