Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for S1 (0.02 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // * qn = quantized value for tensor n
    // * sn = scale for tensor n
    // * zn = zero point for tensor n
    //
    // r3 = r1 * r2
    //    = s1 (q1 - z1) * s2 (q2 - z2)
    //    = s1 s2 (q1 q2 - q1 z2 - q2 z1 + z1 z2)
    //
    // * z2 is zero, because it assumes symmetric quantization for the filter:
    //
    //    = s1 s2 (q1 q2 - q2 z1)
    //
    // In StableHLO text representation, the pattern is as the following
    // (simplified):
    //
    // ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. pkg/kube/multicluster/secretcontroller_test.go

    	c := buildTestController(t, false)
    	c.AddSecret("s0", "c0")
    	c.AddSecret("s1", "c1")
    	c.Run(stop)
    
    	// before sync
    	assert.EventuallyEqual(t, c.controller.ListRemoteClusters, []cluster.DebugInfo{
    		{ID: "config", SyncStatus: "syncing"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "syncing"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

        public val expression: KtExpression by validityAsserted(expression)
    
        /**
         * Whether safe navigation is used on this receiver. For example
         * ```
         * fun test(s1: String?, s2: String) {
         *   s1?.length // explicit receiver `s1` has `isSafeNavigation = true`
         *   s2.length // explicit receiver `s2` has `isSafeNavigation = false`
         * }
         * ```
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    	_ = b[2]
    	// arm64:`MOVH\sR[0-9]+,\s1\(R[0-9]+\)`,-`MOVB`
    	// 386:`MOVW\s[A-Z]+,\s1\([A-Z]+\)`,-`MOVB`
    	// amd64:`MOVW\s[A-Z]+,\s1\([A-Z]+\)`,-`MOVB`
    	// ppc64le:`MOVH\s`,-`MOVB`
    	// ppc64:`MOVHBR`,-`MOVB`
    	b[1], b[2] = byte(val), byte(val>>8)
    }
    
    func store_le_byte_2_inv(b []byte, val uint16) {
    	_ = b[2]
    	// 386:`MOVW\s[A-Z]+,\s1\([A-Z]+\)`,-`MOVB`
    	// amd64:`MOVW\s[A-Z]+,\s1\([A-Z]+\)`,-`MOVB`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            "s1"                  | { property().tap { add("s1") } }               || "$collectionName(class ${String.name}, [s1])"
            "[s1, s2]"            | { property().value(["s1, s2"]) }               || "$collectionName(class ${String.name}, [s1, s2])"
            "s1 + s2"             | { property().tap { add("s1"); add("s2") } }    || "$collectionName(class ${String.name}, [s1] + [s2])"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/decls1.go

    	s11 = &v
    	s12 = -(u + *t11) / *&v
    	s13 = a /* ERROR "shifted operand" */ << d
    	s14 = i << j
    	s18 = math.Pi * 10.0
    	s19 = s1 /* ERROR "cannot call" */ ()
     	s20 = f0 /* ERROR "no value" */ ()
    	s21 = f6(1, s1, i)
    	s22 = f6(1, s1, uu /* ERRORx `cannot use .* in argument` */ )
    
    	t1 int = i + j
    	t2 int = i /* ERROR "mismatched types" */ + x
    	t3 int = c /* ERRORx `cannot use .* variable declaration` */ + d
    	t4 string = s + t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. cmd/bootstrap-peer-server.go

    	MinioEnv   map[string]string
    }
    
    // Diff - returns error on first difference found in two configs.
    func (s1 *ServerSystemConfig) Diff(s2 *ServerSystemConfig) error {
    	ns1 := s1.NEndpoints
    	ns2 := s2.NEndpoints
    	if ns1 != ns2 {
    		return fmt.Errorf("Expected number of endpoints %d, seen %d", ns1, ns2)
    	}
    
    	for i, cmdLine := range s1.CmdLines {
    		if cmdLine != s2.CmdLines[i] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. test/typeparam/builtins.go

    }
    
    // make
    
    func m1[
    	S1 interface{ []int },
    	S2 interface{ []int | chan int },
    
    	M1 interface{ map[string]int },
    	M2 interface{ map[string]int | chan int },
    
    	C1 interface{ chan int },
    	C2 interface{ chan int | chan string },
    ]() {
    	type m1S0 []int
    	type m1M0 map[string]int
    	type m1C0 chan int
    
    	_ = make([]int, 10)
    	_ = make(m1S0, 10)
    	_ = make(S1, 10)
    	_ = make(S1, 10, 20)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. pkg/slices/slices.go

    // Floating point NaNs are not considered equal.
    func Equal[E comparable](s1, s2 []E) bool {
    	return slices.Equal(s1, s2)
    }
    
    // EqualUnordered reports whether two slices are equal, ignoring order
    func EqualUnordered[E comparable](s1, s2 []E) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	first := make(map[E]struct{}, len(s1))
    	for _, c := range s1 {
    		first[c] = struct{}{}
    	}
    	for _, c := range s2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %3 = stablehlo.constant dense<4> : tensor<1x1x3xi32>  // Precalculated q2 * z1.
        %4 = stablehlo.constant dense<3.000000e+03> : tensor<1x1x3xf32>  // Merged scale: s1 * s2.
        %5 = stablehlo.constant dense<2.000000e+02> : tensor<1x1x1xf32>  // Output inverse scale.
        %6 = stablehlo.constant dense<2> : tensor<1x1x1xi8>  // Output zero point.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
Back to top