Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for 16xf16 (0.13 sec)

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

      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testConv2D
    func.func @testConv2D(tensor<256x32x32x3xf32>, tensor<16x3x3x3xf32>, tensor<16xf32>) -> tensor<256x32x32x16xf32> {
    ^bb0(%arg0: tensor<256x32x32x3xf32>, %arg1: tensor<16x3x3x3xf32>, %arg2: tensor<16xf32>):
      // CHECK: "tfl.conv_2d"(%arg0, %arg1, %arg2)
    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/experimental/tac/tests/raise-target-subgraphs.mlir

    // CHECK-DAG:       %[[VAL_3:.*]] = "tfl.pseudo_const"() <{value = dense<1.000000e+00> : tensor<16x3x3x16xf32>}> : () -> tensor<16x3x3x16xf32>
    // CHECK-DAG:       %[[VAL_4:.*]] = "tfl.pseudo_const"() <{value = dense<1.000000e+00> : tensor<16xf32>}> : () -> tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: tf.Select
      %0 = "tf.Select"(%arg0, %arg1, %arg2) : (tensor<6x7xi1>, tensor<*xf16>, tensor<*xf16>) -> tensor<*xf16>
      func.return %0: tensor<*xf16>
    }
    
    // -----
    
    // CHECK-LABEL: testSelectThenUnranked
    func.func @testSelectThenUnranked(%arg0: tensor<3xi1>, %arg1: tensor<*xf16>, %arg2: tensor<3x2xf16>) -> tensor<*xf16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. src/image/jpeg/reader_test.go

    				// entirely outside of the image's bounds. For example, this can
    				// occur with a 4:2:0 chroma subsampling and a 1x1 image. Baseline
    				// decoding works on the one 16x16 MCU as a whole; progressive
    				// decoding's first pass works on that 16x16 MCU as a whole but
    				// refinement passes only process one 8x8 block within the MCU.
    				continue
    			}
    
    			for j := 0; j < 8; j++ {
    				for i := 0; i < 8; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/image/jpeg/scan.go

    				hi := d.comp[compIndex].h
    				vi := d.comp[compIndex].v
    				for j := 0; j < hi*vi; j++ {
    					// The blocks are traversed one MCU at a time. For 4:2:0 chroma
    					// subsampling, there are four Y 8x8 blocks in every 16x16 MCU.
    					//
    					// For a sequential 32x16 pixel image, the Y blocks visiting order is:
    					//	0 1 4 5
    					//	2 3 6 7
    					//
    					// For progressive images, the interleaved scans (those with nComp > 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run_test.go

    	}{
    		{
    			name: "wildcard",
    			cidr: "*",
    			v4:   NetworkRange{IsWildcard: true},
    			v6:   NetworkRange{IsWildcard: true},
    		},
    		{
    			name: "v4 only",
    			cidr: "10.0.0.0/8,172.16.0.0/16",
    			v4:   NetworkRange{CIDRs: mkIPList("10.0.0.0/8", "172.16.0.0/16")},
    		},
    		{
    			name: "v6 only",
    			cidr: "fd04:3e42:4a4e:3381::/64,ffff:ffff:ac10:ac10::/64",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/compress/bzip2/bzip2.go

    	}
    	origPtr := uint(br.ReadBits(24))
    
    	// If not every byte value is used in the block (i.e., it's text) then
    	// the symbol set is reduced. The symbols used are stored as a
    	// two-level, 16x16 bitmap.
    	symbolRangeUsedBitmap := br.ReadBits(16)
    	symbolPresent := make([]bool, 256)
    	numSymbols := 0
    	for symRange := uint(0); symRange < 16; symRange++ {
    		if symbolRangeUsedBitmap&(1<<(15-symRange)) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // -----
    
    // CHECK-LABEL: func @tf2xla_fallback_op_approx_top_k
    func.func @tf2xla_fallback_op_approx_top_k(%arg0: tensor<16xf32>) -> (tensor<?xf32>, tensor<?xi32>) {
      %0:2 = "tf_device.cluster"() ({
        // CHECK: tf.ApproxTopK
        // CHECK-NOT: _xla_outside_compilation
        %1:2 = "tf.ApproxTopK"(%arg0) {k = 2} : (tensor<16xf32>) -> (tensor<?xf32>, tensor<?xi32>)
        tf_device.return %1#0, %1#1 : tensor<?xf32>, tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    				http.Redirect(w, r, u.String(), http.StatusTemporaryRedirect)
    				return
    			}
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    var redirectPrefixes = map[string]struct{}{
    	"favicon-16x16.png": {},
    	"favicon-32x32.png": {},
    	"favicon-96x96.png": {},
    	"index.html":        {},
    	minioReservedBucket: {},
    }
    
    // Fetch redirect location if urlPath satisfies certain
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. cmd/streaming-signature-v4.go

    //
    // The last chunk is *always* 0-sized. So, we must only return io.EOF if we have encountered
    // a chunk with a chunk size = 0. However, this chunk still has a signature and we must
    // verify it.
    const maxChunkSize = 16 << 20 // 16 MiB
    
    // Read - implements `io.Reader`, which transparently decodes
    // the incoming AWS Signature V4 streaming signature.
    func (cr *s3ChunkedReader) Read(buf []byte) (n int, err error) {
    	if cr.err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top