Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for 1011 (0.12 sec)

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

      func.return %1#0, %1#1: tensor<3x4x2xf32>, tensor<3x4x2xi32>
    }
    
    // -----
    
    // CHECK-LABEL: topk_d
    func.func @topk_d(%arg0: tensor<?x8xf32>) -> (tensor<?x2xf32>, tensor<?x2xi32>) {
      %0 = arith.constant dense<2> : tensor<i32>
      %1:2 = "tfl.topk_v2"(%arg0, %0) : (tensor<?x8xf32>, tensor<i32>) -> (tensor<?x2xf32>, tensor<?x2xi32>)
      func.return %1#0, %1#1: tensor<?x2xf32>, tensor<?x2xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [1, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported ksize
      %1 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [3, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported strides
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	// also has expected response data.
    	testCases := []struct {
    		byteRange      string
    		expectedString string
    	}{
    		// request for byte range 10-11.
    		// expecting the result to contain only putContent[10:12] bytes.
    		{"10-11", putContent[10:12]},
    		// request for object data after the first byte.
    		{"1-", putContent[1:]},
    		// request for object data after the first byte.
    		{"6-", putContent[6:]},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    Xpp3Dom); public static void write(java.io.PrintWriter, Xpp3Dom); public static void write(XMLWriter, Xpp3Dom); public static void write(XMLWriter, Xpp3Dom, boolean); } META-INF/maven/org.codehaus.plexus/plexus-utils/pom.xml plexus org.codehaus.plexus 1.0.11 ../pom/pom.xml 4.0.0 plexus-utils Plexus Common Utilities 1.4.5 http://plexus.codehaus.org/plexus-utils maven-compiler-plugin 1.3 1.3 maven-surefire-plugin true org/codehaus/plexus/util/FileBasedTestCase.java **/Test*.java JAVA_HOME ${JAVA_HOME} M2_HOME...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    			Addresses: []string{"10.1.1.1"},
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To("p11"),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	subset2 := func(eps *discovery.EndpointSlice) {
    		eps.AddressType = discovery.AddressTypeIPv4
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"10.1.1.2"},
    		}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    			retOffset: 4 * goarch.PtrSize,
    			stack:     []byte{1, 0, 1, 1},
    			gc:        []byte{1, 0, 1, 1},
    		},
    		{
    			typ:       ValueOf(func(a S) {}).Type(),
    			size:      4 * goarch.PtrSize,
    			argsize:   4 * goarch.PtrSize,
    			retOffset: 4 * goarch.PtrSize,
    			stack:     []byte{0, 0, 1, 1},
    			gc:        []byte{0, 0, 1, 1},
    		},
    		{
    			rcvr:      ValueOf((*byte)(nil)).Type(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	1010: {region: 0x166, script: 0x5b, flags: 0x0},
    	1011: {region: 0x130, script: 0x5b, flags: 0x0},
    	1012: {region: 0x9f, script: 0x5b, flags: 0x0},
    	1013: {region: 0x9a, script: 0x22, flags: 0x0},
    	1014: {region: 0x166, script: 0x5, flags: 0x0},
    	1015: {region: 0x9f, script: 0x5b, flags: 0x0},
    	1016: {region: 0x7c, script: 0x5b, flags: 0x0},
    	1017: {region: 0x49, script: 0x5b, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK-SAME: (tensor<4xi32>, tensor<3x3x32x64xf32>, tensor<200x24x24x64xf32>) -> tensor<200x26x26x32xf32>
        %1 = "tf.Conv2DBackpropInput"(%0, %arg0, %arg1) {data_format = "NHWC", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 1, 1], use_cudnn_on_gpu = true} : (tensor<4xi32>, tensor<3x3x32x64xf32>, tensor<200x24x24x64xf32>) -> tensor<?x?x?x?xf32>
        func.return %1 : tensor<?x?x?x?xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // tf.Reshape with -1 in the shape can't infer the dimension.
    func.func @testReshape(%arg0: tensor<10x10x10x10xf32>) -> tensor<100x100xf32> {
      %shape1 = arith.constant dense<[101, -1]> : tensor<2xi32>
      // expected-error @+1 {{requires 'tensor' number of elements be a multiple of 101, but got 10000}}
      %r1 = "tf.Reshape" (%arg0, %shape1) : (tensor<10x10x10x10xf32>, tensor<2xi32>) -> tensor<100x100xf32>
      func.return %r1 : tensor<100x100xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    	case AREMW, ASDIVW:
    		return S32 | OPDP2(3)
    
    	case ASMULL, ASMADDL:
    		return OPDP3(1, 0, 1, 0)
    
    	case ASMNEGL, ASMSUBL:
    		return OPDP3(1, 0, 1, 1)
    
    	case ASMULH:
    		return OPDP3(1, 0, 2, 0)
    
    	case AUMULL, AUMADDL:
    		return OPDP3(1, 0, 5, 0)
    
    	case AUMNEGL, AUMSUBL:
    		return OPDP3(1, 0, 5, 1)
    
    	case AUMULH:
    		return OPDP3(1, 0, 6, 0)
    
    	case AUREM, AUDIV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top