Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for S1 (0.02 sec)

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

      %2 = "tfl.shape"(%1) : (tensor<?xf32>) -> tensor<1xi32>
      func.return %2, %2 : tensor<1xi32>, tensor<1xi32>
    
    // CHECK: %[[s1:.*]] = "tfl.shape"(%arg0) : (tensor<?x!quant.uniform<u8:f32, 1.000000e+00>>) -> tensor<1xi32>
    // CHECK-NEXT: %[[s1]], %[[s1]] : tensor<1xi32>, tensor<1xi32>
    }
    
    // CHECK-LABEL: NotQuantizePow
    func.func @NotQuantizePow(%arg0: tensor<4x!quant.uniform<u8:f32, 1.0>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        %s0 = "tf.Const"() {value = dense<[501, 1, 32, 1280]> : tensor<4xi32>} : () -> tensor<4xi32>
        %s1 = "tf.Const"() {value = dense<[  1, 1,  1, 1280]> : tensor<4xi32>} : () -> tensor<4xi32>
    
        // CHECK: "tf.BroadcastGradientArgs"
        // CHECK-NOT: _xla_outside_compilation
        %r0, %r1 = "tf.BroadcastGradientArgs"(%s0, %s1) {} : (tensor<4xi32>, tensor<4xi32>) -> (tensor<1xi32>, tensor<3xi32>)
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. src/internal/reflectlite/all_test.go

    		if s != tt.s {
    			t.Errorf("#%d: have %#q, want %#q", i, s, tt.s)
    		}
    	}
    }
    
    func TestCanSetField(t *testing.T) {
    	type embed struct{ x, X int }
    	type Embed struct{ x, X int }
    	type S1 struct {
    		embed
    		x, X int
    	}
    	type S2 struct {
    		*embed
    		x, X int
    	}
    	type S3 struct {
    		Embed
    		x, X int
    	}
    	type S4 struct {
    		*Embed
    		x, X int
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    	}
    	return strings.HasSuffix(s, suffix)
    }
    
    // Validates if two strings are equal.
    func isStringEqual(s1 string, s2 string) bool {
    	if runtime.GOOS == globalWindowsOSName {
    		return strings.EqualFold(s1, s2)
    	}
    	return s1 == s2
    }
    
    // Ignores all reserved bucket names or invalid bucket names.
    func isReservedOrInvalidBucket(bucketEntry string, strict bool) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		if err == nil {
    			t.Errorf("%v: did not get expected error\n", test)
    		}
    	}
    }
    
    func TestDeterministicParse(t *testing.T) {
    	s1, err := Parse("x=a,a=x")
    	s2, err2 := Parse("a=x,x=a")
    	if err != nil || err2 != nil {
    		t.Errorf("Unexpected parse error")
    	}
    	if s1.String() != s2.String() {
    		t.Errorf("Non-deterministic parse")
    	}
    }
    
    func expectMatch(t *testing.T, selector string, ls Set) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

    
    @composite.Composite('TestIdentityOp')
    def _tfr_shapes(x):
      s1 = x.shape
      s3 = x.shape.as_list()
    
      for i in range(len(s3)):
        s3[i]  # pylint: disable=pointless-statement
    
      for i in range(1, len(s3), 2):
        s3[i]  # pylint: disable=pointless-statement
    
      s5 = array_ops.Shape(x)
      (s1, s3, s5)  # pylint: disable=pointless-statement
      return x
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  7. src/go/types/issues_test.go

    	//         }
    	// }
    	n1 := NewTypeName(nopos, nil, "T1", nil)
    	T1 := NewNamed(n1, nil, nil)
    	n2 := NewTypeName(nopos, nil, "T2", nil)
    	T2 := NewNamed(n2, nil, nil)
    	s1 := NewStruct([]*Var{NewField(nopos, nil, "_", T2, false)}, nil)
    	T1.SetUnderlying(s1)
    	s2 := NewStruct([]*Var{NewField(nopos, nil, "_", T2, false)}, nil)
    	s3 := NewStruct([]*Var{NewField(nopos, nil, "_", s2, false)}, nil)
    	T2.SetUnderlying(s3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	defer testCancel()
    
    	calls := atomic.Uint64{}
    	success := atomic.Bool{}
    	tracker, myController, _, waitForReconcile, verifyNoMoreEvents := setupTest(testContext, func(s1, s2 string, o runtime.Object) error {
    
    		if calls.Add(1) > 2 {
    			// Suddenly start liking the object
    			success.Store(true)
    			return nil
    		}
    		return errors.New("i dont like this object")
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    		// Not stored in a user arena chunk.
    		return s
    	}
    	// Heap-allocate storage for a copy.
    	var x any
    	switch t.Kind_ & abi.KindMask {
    	case abi.String:
    		s1 := s.(string)
    		s2, b := rawstring(len(s1))
    		copy(b, s1)
    		x = s2
    	case abi.Slice:
    		len := (*slice)(e.data).len
    		et := (*slicetype)(unsafe.Pointer(t)).Elem
    		sl := new(slice)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/cmd/link/elf_test.go

    	cmd.Env = env
    	cflagsb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cflags := strings.Fields(string(cflagsb))
    
    	return cc, cflags
    }
    
    var asmSource = `
    	.section .text1,"ax"
    s1:
    	.byte 0
    	.section .text2,"ax"
    s2:
    	.byte 0
    `
    
    var goSource = `
    package main
    func main() {}
    `
    
    // The linker used to crash if an ELF input file had multiple text sections
    // with the same name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top