Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 3p1024 (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self._create_matmul_model(
            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
    
        rng = np.random.default_rng(seed=1234)
        representative_dataset: repr_dataset.RepresentativeDataset = [
            {'input_tensor': rng.uniform(size=(1, 1024)).astype(np.float32)}
            for _ in range(4)
        ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	1234567890,1234567890,1234567890,1234567890,1234567890,123"`
    	// Create 10MiB content where each line contains 1024 characters.
    	for i := 0; i < 10*1024; i++ {
    		buffer.WriteString(fmt.Sprintf("[%05d] %s\n", i, line))
    	}
    	putContent := buffer.String()
    
    	buf := bytes.NewReader([]byte(putContent))
    
    	objectName := "test-big-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FSCTL_SET_ZERO_ON_DEALLOCATION            = 0x090194
    	FSCTL_SIS_COPYFILE                        = 0x090100
    	FSCTL_WRITE_USN_CLOSE_RECORD              = 0x0900EF
    
    	MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16 * 1024
    	IO_REPARSE_TAG_MOUNT_POINT       = 0xA0000003
    	IO_REPARSE_TAG_SYMLINK           = 0xA000000C
    	SYMBOLIC_LINK_FLAG_DIRECTORY     = 0x1
    )
    
    const (
    	ComputerNameNetBIOS                   = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	cr.unlock()
    
    	cr.cond.Broadcast()
    	return n, err
    }
    
    var (
    	bufioReaderPool   sync.Pool
    	bufioWriter2kPool sync.Pool
    	bufioWriter4kPool sync.Pool
    )
    
    const copyBufPoolSize = 32 * 1024
    
    var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte) }}
    
    func getCopyBuf() []byte {
    	return copyBufPool.Get().(*[copyBufPoolSize]byte)[:]
    }
    func putCopyBuf(b []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top