Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for power9 (0.11 sec)

  1. src/internal/cpu/cpu_ppc64x_aix.go

    	_SC_IMPL      = 2
    	_IMPL_POWER8  = 0x10000
    	_IMPL_POWER9  = 0x20000
    	_IMPL_POWER10 = 0x40000
    )
    
    func osinit() {
    	impl := getsystemcfg(_SC_IMPL)
    	PPC64.IsPOWER8 = isSet(impl, _IMPL_POWER8)
    	PPC64.IsPOWER9 = isSet(impl, _IMPL_POWER9)
    	PPC64.IsPOWER10 = isSet(impl, _IMPL_POWER10)
    }
    
    // getsystemcfg is defined in runtime/os2_aix.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 603 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list-default-to-single-batch.mlir

    // RUN: tf-opt "-tfl-lower-static-tensor-list=allow-tensorlist-pass-through default-to-single-batch=false" -split-input-file %s | FileCheck %s
    
    // -----
    
    func.func @tensorlistReserveConstantUnknownElementShapeDim(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<?x7xf32> {
      %cst = arith.constant dense<[-1, 7]> : tensor<2xi32>
      %0 = "tf.TensorListReserve"(%cst, %arg0) : (tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<?x7xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 766 bytes
    - Viewed (0)
  3. src/runtime/mkfastlog2table.go

    // log2 is a local copy of math.Log2 with an explicit float64 conversion
    // to disable FMA. This lets us generate the same output on all platforms.
    func log2(x float64) float64 {
    	frac, exp := math.Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    	if frac == 0.5 {
    		return float64(exp - 1)
    	}
    	return float64(nlog(frac)*(1/math.Ln2)) + float64(exp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 22:12:19 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu_ppc64x_linux.go

    	hwcap2_ARCH_3_1  = 0x00040000
    
    	// CPU features
    	hwcap2_DARN = 0x00200000
    	hwcap2_SCV  = 0x00100000
    )
    
    func osinit() {
    	PPC64.IsPOWER8 = isSet(HWCap2, hwcap2_ARCH_2_07)
    	PPC64.IsPOWER9 = isSet(HWCap2, hwcap2_ARCH_3_00)
    	PPC64.IsPOWER10 = isSet(HWCap2, hwcap2_ARCH_3_1)
    	PPC64.HasDARN = isSet(HWCap2, hwcap2_DARN)
    	PPC64.HasSCV = isSet(HWCap2, hwcap2_SCV)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 885 bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

      static AtomicLong requests = new AtomicLong(0);
      static AtomicLong misses = new AtomicLong(0);
    
      @BeforeExperiment
      void setUp() {
        // random integers will be generated in this range, then raised to the
        // power of (1/concentration) and floor()ed
        max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration));
    
        cache =
            CacheBuilder.newBuilder()
                .concurrencyLevel(segments)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/BigDecimalMath.java

       * the least significant bit zero is chosen. (In such cases, both of the nearest representable
       * values are even integers; this method returns the one that is a multiple of a greater power of
       * two.)
       *
       * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
       *     is not precisely representable as a {@code double}
       * @since 30.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy_test.go

    )
    
    // TestNoStarsForControllers confirms that no controller role has star verbs, groups,
    // or resources.  There are three known exceptions: namespace lifecycle and GC which have to
    // delete anything, and HPA, which has the power to read metrics associated
    // with any object.
    func TestNoStarsForControllers(t *testing.T) {
    	for _, role := range ControllerRoles() {
    		if rolesWithAllowStar.Has(role.Name) {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 05:24:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. src/strconv/testdata/testfp.txt

    # input with the given format.
    #
    # The formats are as in C's printf, except that %b means print
    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    #	random targets
    #	random targets ± half a ULP
    
    # Difficult boundary cases, derived from tables given in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		semanticRoles.edit.Rules[i] = rule
    	}
    
    	// confirm that the view role doesn't already have extra powers
    	for _, rule := range viewEscalatingNamespaceResources {
    		if covers, _ := validation.Covers(semanticRoles.view.Rules, []rbacv1.PolicyRule{rule}); covers {
    			t.Errorf("view has extra powers: %#v", rule)
    		}
    	}
    	semanticRoles.view.Rules = append(semanticRoles.view.Rules, viewEscalatingNamespaceResources...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/internal/fuzz/coverage.go

    	cov := coverage()
    	clear(cov)
    }
    
    // SnapshotCoverage copies the current counter values into coverageSnapshot,
    // preserving them for later inspection. SnapshotCoverage also rounds each
    // counter down to the nearest power of two. This lets the coordinator store
    // multiple values for each counter by OR'ing them together.
    func SnapshotCoverage() {
    	cov := coverage()
    	for i, b := range cov {
    		b |= b >> 1
    		b |= b >> 2
    		b |= b >> 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top