Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Overhead (0.43 sec)

  1. cmd/erasure-multipart.go

    	case size == 0:
    		buffer = make([]byte, 1) // Allocate at least a byte to reach EOF
    	case size == -1:
    		if size := data.ActualSize(); size > 0 && size < fi.Erasure.BlockSize {
    			// Account for padding and forced compression overhead and encryption.
    			buffer = make([]byte, data.ActualSize()+256+32+32, data.ActualSize()*2+512)
    		} else {
    			buffer = globalBytePoolCap.Load().Get()
    			defer globalBytePoolCap.Load().Put(buffer)
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 43K bytes
    - Viewed (0)
  2. RELEASE.md

                [eager context](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/eager/context.py).
            *   Eager performance should be similar with this feature enabled.
                *   A roughly 5us per-op overhead may be observed when running many
                    small functions.
                *   Note a
                    [known issue](https://github.com/tensorflow/tensorflow/issues/55414)
                    with GPU performance.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top