Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Write combining
Computing performance method of combining multiple memory writes before sending them

Write combining (WC) is a computer bus technique for allowing data to be combined and temporarily stored in a buffer – the write combine buffer (WCB) – to be released together later in burst mode instead of writing (immediately) as single bits or small chunks.

We don't have any images related to Write combining yet.
We don't have any YouTube videos related to Write combining yet.
We don't have any PDF documents related to Write combining yet.
We don't have any Books related to Write combining yet.
We don't have any archived web articles related to Write combining yet.

Technique

Write combining cannot be used for general memory access (data or code regions) due to the weak ordering. Write-combining does not guarantee that the combination of writes and reads is done in the expected order. For example, a write/read/write combination to a specific address would lead to the write combining order of read/write/write which can lead to obtaining wrong values with the first read (which potentially relies on the write before).

In order to avoid the problem of read/write order described above, the write buffer can be treated as a fully associative cache and added into the memory hierarchy of the device in which it is implemented.2 Adding complexity slows down the memory hierarchy so this technique is often only used for memory which does not need strong ordering (always correct) like the frame buffers of video cards.

See also

References

  1. Intel (November 1998). "Write Combining Memory Implementation Guidelines" (PDF). Intel. Retrieved 2010-11-02. http://download.intel.com/design/PentiumII/applnots/24442201.pdf

  2. BearWindows (2008-09-01). "Video Hardware Acceleration in DOS Environment". BearWindows Vault. Archived from the original on July 24, 2008. Retrieved 2010-11-02. https://web.archive.org/web/20080724002604/http://www.bearwindows.boot-land.net/af.htm