Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 16x16 (0.06 sec)

  1. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      pass_config.unfold_batch_matmul = toco_flags.unfold_batchmatmul();
      pass_config.lower_tensor_list_ops = toco_flags.lower_tensor_list_ops();
      // Disable the unfolding of the 16x16 TF::BatchMatMulOp to avoid the
      // conversion to an unsupported 16x16 TFL::FullyConnectedOp.
      if (toco_flags.inference_type() == toco::IODataType::QUANTIZED_INT16) {
        pass_config.unfold_batch_matmul = false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/image/jpeg/writer.go

    			}
    			yi := m.YOffset(sx, sy)
    			ci := m.COffset(sx, sy)
    			yBlock[8*j+i] = int32(m.Y[yi])
    			cbBlock[8*j+i] = int32(m.Cb[ci])
    			crBlock[8*j+i] = int32(m.Cr[ci])
    		}
    	}
    }
    
    // scale scales the 16x16 region represented by the 4 src blocks to the 8x8
    // dst block.
    func scale(dst *block, src *[4]block) {
    	for i := 0; i < 4; i++ {
    		dstOff := (i&2)<<4 | (i&1)<<2
    		for y := 0; y < 4; y++ {
    			for x := 0; x < 4; x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. 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)
  7. cmd/endpoint-ellipses_test.go

    						},
    						{
    							Prefix: "http://minio",
    							Suffix: ".mydomain.net/data",
    							Seq:    getSequences(0, 15, 0),
    						},
    					},
    				},
    				nil,
    				[][]uint64{{16, 16}},
    			},
    			true,
    		},
    		// No host regex, just disks.
    		{
    			"http://server1/data{1...32}",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    						{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                        message = Unparsable value argument: "("plugin-id-1"". Expecting ')',
                        potentialElementSource = indexes: 2..16, line/column: 1/3..1/17, file: test,
                        erroneousSource = indexes: 16..16, line/column: 1/17..1/17, file: test
                    )
                )
                ErroneousStatement (
                    ParsingError(
                        message = Expecting an element,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

          equalsTester.addEqualityGroup(
              UnsignedLong.fromLongBits(a),
              UnsignedLong.valueOf(big),
              UnsignedLong.valueOf(big.toString()),
              UnsignedLong.valueOf(big.toString(16), 16));
        }
        equalsTester.testEquals();
      }
    
      public void testIntValue() {
        for (long a : TEST_LONGS) {
          UnsignedLong aUnsigned = UnsignedLong.fromLongBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/image/draw/draw_test.go

    		}
    	}
    	return m
    }
    
    func vgradCr() image.Image {
    	m := &image.YCbCr{
    		Y:              make([]byte, 16*16),
    		Cb:             make([]byte, 16*16),
    		Cr:             make([]byte, 16*16),
    		YStride:        16,
    		CStride:        16,
    		SubsampleRatio: image.YCbCrSubsampleRatio444,
    		Rect:           image.Rect(0, 0, 16, 16),
    	}
    	for y := 0; y < 16; y++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top