<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Memory by Symbat Nurgaliyeva</title>
      <link>https://padlet.com/symbat2030/3bg3760rr59x</link>
      <description>Сделано с любовью</description>
      <language>en-us</language>
      <pubDate>2018-03-29 08:50:16 UTC</pubDate>
      <lastBuildDate>2025-03-17 22:21:43 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Altynai</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174733</link>
         <description><![CDATA[<div><strong>DDR2,3,4<br></strong><strong><em>DDR - double data rate</em></strong></div><div><strong>It is:</strong></div><ol><li>&nbsp; &nbsp;double the speed of the memory (400 Mbits/sec; 1066 Mbits/sec; 2133 Mbits/sec; 4266 Mbits/sec)</li><li>use less energy</li></ol><div><strong>The place:</strong></div><ol><li>in memory of the computer(f.ex in the DDR-SDRAM)</li><li>on high-end videocards</li></ol><div><strong>The difficults:</strong><br>the structure of each type of DDR are different, that is why it will be hard to replace one type of DDR to another<br>the speed of the DDR should matches with the speed of the motherboard</div><div><br></div><div><figure class="attachment attachment--preview" data-trix-attachment="{&quot;contentType&quot;:&quot;image&quot;,&quot;height&quot;:331,&quot;url&quot;:&quot;https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Desktop_DDR_Memory_Comparison.svg/220px-Desktop_DDR_Memory_Comparison.svg.png&quot;,&quot;width&quot;:220}" data-trix-content-type="image"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Desktop_DDR_Memory_Comparison.svg/220px-Desktop_DDR_Memory_Comparison.svg.png" width="220" height="331"><figcaption class="attachment__caption"></figcaption></figure>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:51:46 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174733</guid>
      </item>
      <item>
         <title>АЛИШЕР</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174757</link>
         <description><![CDATA[<div><strong><br>SRAM vs DRAM<br></strong><br></div><div><br>There are two types of Random Access Memory or RAM, each has its own advantages and disadvantages compared to the other. SRAM (Static RAM) and DRAM (Dynamic RAM) holds data but in a different ways. DRAM requires the data to be refreshed periodically in order to retain the data. SRAM does not need to be refreshed as the transistors inside would continue to hold the data as long as the power supply is not cut off. This behavior leads to a few advantages, not the least of which is the much faster speed that data can be written and read.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:51:52 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174757</guid>
      </item>
      <item>
         <title>Olzhas</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174831</link>
         <description><![CDATA[<div>SDRAM<figure class="attachment attachment--preview"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/SO-DIMM-200pin-256MB-DDR-SDRAM.jpg/300px-SO-DIMM-200pin-256MB-DDR-SDRAM.jpg" width="300" height="124"><figcaption class="attachment__caption"></figcaption></figure>Synchronous dynamic random-access memory (SDRAM) is any dynamic random-access memory (DRAM) where the operation of its external pin interface is coordinated by an externally supplied clock signal.</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:52:10 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174831</guid>
      </item>
      <item>
         <title>Total bandwidth of RAM</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174888</link>
         <description><![CDATA[<div> </div><div><strong><br>Memory bandwidth</strong> is the rate at which data can be read from or stored into a <a href="https://en.wikipedia.org/wiki/Semiconductor_memory">semiconductor memory</a> by a <a href="https://en.wikipedia.org/wiki/Central_processing_unit">processor</a>. Memory bandwidth is usually expressed in units of <a href="https://en.wikipedia.org/wiki/Bytes_per_second">bytes/second</a>, though this can vary for systems with natural data sizes that are not a multiple of the commonly used 8-bit bytes.<br><br></div><div><br>Memory bandwidth that is advertised for a given memory or system is usually the maximum theoretical bandwidth. In practice the observed memory bandwidth will be less than (and is guaranteed not to exceed) the advertised bandwidth. A variety of <a href="https://en.wikipedia.org/wiki/Computer_benchmark">computer benchmarks</a> exist to measure sustained memory bandwidth using a variety of access patterns. These are intended to provide insight into the memory bandwidth that a system should sustain on various classes of real applications. <br> </div><div><br>There are three different conventions for defining the quantity of data transferred in the numerator of "bytes/second":<br><br></div><ol><li>The <strong>bcopy convention</strong>: counts the amount of data copied from one location in memory to another location per unit time. For example, copying 1 million bytes from one location in memory to another location in memory in one second would be counted as 1 million bytes per second. The bcopy convention is self-consistent, but is not easily extended to cover cases with more complex access patterns, for example three reads and one write.</li><li>The <strong>STREAM convention</strong>: sums the amount of data that the application code explicitly reads plus the amount of data that the application code explicitly writes.<a href="https://en.wikipedia.org/wiki/Memory_bandwidth#cite_note-1"><sup>[1]</sup></a> Using the previous 1 million byte copy example, the STREAM bandwidth would be counted as 1 million bytes read plus 1 million bytes written in one second, for a total of 2 million bytes per second. The STREAM convention is most directly tied to the user code, but may not count all the data traffic that the hardware is actually required to perform.</li><li>The <strong>hardware convention</strong>: counts the actual amount of data read or written by the hardware, whether the data motion was explicitly requested by the user code or not. Using the same 1 million byte copy example, the <em>hardware</em> bandwidth on computer systems with a <a href="https://en.wikipedia.org/wiki/CPU_cache">write allocate cache policy</a> would include an additional 1 million bytes of traffic because the hardware reads the target array from memory into cache before performing the stores. This gives a total of 3 million bytes per second actually transferred by the hardware. The hardware convention is most directly tied to the hardware, but may not represent the minimum amount of data traffic required to implement the user's code.</li></ol><div>For example, some computer systems have the ability to avoid write allocate traffic using special instructions, leading to the possibility of misleading comparisons of bandwidth based on different amounts of data traffic performed. <br><br>The nomenclature differs across memory technologies, but for commodity <a href="https://en.wikipedia.org/wiki/DDR_SDRAM">DDR SDRAM</a>, <a href="https://en.wikipedia.org/wiki/DDR2_SDRAM">DDR2 SDRAM</a>, and <a href="https://en.wikipedia.org/wiki/DDR3_SDRAM">DDR3 SDRAM</a> memory, the total bandwidth is the product of:<br><br></div><ul><li><strong>Base DRAM clock frequency</strong></li><li><strong>Number of data transfers per clock</strong>: Two, in the case of "double data rate" (DDR, DDR2, DDR3, DDR4) memory.</li><li><strong>Memory bus (interface) width</strong>: Each DDR, DDR2, or DDR3 memory interface is 64 bits wide. Those 64 bits are sometimes referred to as a "line."</li><li><strong>Number of interfaces</strong>: Modern personal computers typically use two memory interfaces (<a href="https://en.wikipedia.org/wiki/Dual-channel">dual-channel</a> mode) for an effective 128-bit bus width.</li></ul><div><br>For example, a computer with dual-channel memory and one DDR2-800 module per channel running at 400 MHz would have a theoretical maximum memory bandwidth of:<br><br></div><div>400,000,000 clocks per second × 2 lines per clock × 64 bits per line × 2 interfaces =<br><br></div><div>102,400,000,000 (102.4 billion) bits per second (in bytes, 12,800 MB/s or 12.8 GB/s)<br><br></div><div><br>This theoretical maximum memory bandwidth is referred to as the "burst rate," which may not be sustainable.<br><br></div><div><br>The naming convention for DDR, DDR2 and DDR3 modules specifies either a maximum speed (e.g., DDR2-800) or a maximum bandwidth (e.g., PC2-6400). The speed rating (800) is not the maximum clock speed, but twice that (because of the doubled data rate). The specified bandwidth (6400) is the maximum megabytes transferred per second using a 64-bit width. In a dual-channel mode configuration, this is effectively a 128-bit width. Thus, the memory configuration in the example can be simplified as: two DDR2-800 modules running in dual-channel mode.<br><br></div><div><br>Two memory interfaces per module is a common configuration for PC system memory, but single-channel configurations are common in older, low-end, or low-power devices. Some personal computers and most modern graphics cards use more than two memory interfaces (e.g., four for <a href="https://en.wikipedia.org/wiki/Intel_Corporation">Intel's</a> <a href="https://en.wikipedia.org/wiki/LGA_2011">LGA 2011</a> platform and the NVIDIA GeForce GTX 980). High-performance graphics cards running many interfaces in parallel can attain very high total memory bus width (e.g., 384 bits in the NVIDIA GeForce GTX TITAN and 512 bits in the AMD Radeon R9 290X using six and eight 64-bit interfaces respectively).<br> In systems with <a href="https://en.wikipedia.org/wiki/Dynamic_random_access_memory#Errors_and_error_correction">error-correcting memory</a> (ECC), the additional width of the interfaces (typically 72 rather than 64 bits) is not counted in bandwidth specifications because the extra bits are unavailable to store user data. ECC bits are better thought of as part of the memory hardware rather than as information stored in that hardware. </div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:52:22 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174888</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174918</link>
         <description><![CDATA[DDR2,3,4]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:52:27 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247174918</guid>
      </item>
      <item>
         <title>NUrtas</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175241</link>
         <description><![CDATA[<div>DIMM and SIMM<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:53:49 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175241</guid>
      </item>
      <item>
         <title>Zinaddinov Sultanmakhmut</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175470</link>
         <description><![CDATA[<div>&nbsp;</div><div>A CAPACITOR is a passive two-terminal electrical component that stores potential energy in an electric field. The effect of a capacitor is known as capacitance. While some capacitance exists between any two electrical conductors in proximity in a circuit, a capacitor is a component designed to add capacitance to a circuit. The capacitor was originally known as a condenser.<br>&nbsp;&nbsp;</div><div><br>Its function is to store the electrical energy and give this energy again to the circuit when necessary. In other words, it charges and discharges the electric charge stored in it. Besides this, the functions of a capacitor are as follows:<br><br></div><ol><li>It blocks the flow of DC and permits the flow of AC.</li><li>It is used for coupling of the two sections.</li><li>It bypasses (grounds) the unwanted frequencies.</li><li>It feeds the desired signal to any section.</li><li>It is used for phase shifting.</li><li>It is also used for creating a delay in time.</li><li>It is also used for filtration,especially in removing ripples from rectified waveform.</li><li>It is used to get tuned frequency.</li><li>It is used as a motor starter.</li><li>It is also used in conjunction with a resistor to filter ripples in a rectifier circuit.&nbsp;</li></ol>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/276534796/c472ac956314e2965d6f6841141418b8/____.jpg" />
         <pubDate>2018-03-29 08:55:00 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175470</guid>
      </item>
      <item>
         <title>Adilzhan777</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175535</link>
         <description><![CDATA[<div><strong>Clock cycle</strong> is the amount of time between two pulses of an oscillator. <br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:55:22 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175535</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175559</link>
         <description><![CDATA[￼]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:55:31 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175559</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175743</link>
         <description><![CDATA[Clock]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:56:34 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175743</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175883</link>
         <description><![CDATA[￼]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 08:57:15 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247175883</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247177602</link>
         <description><![CDATA[
]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 09:03:47 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247177602</guid>
      </item>
      <item>
         <title>Adilzhan777</title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247178278</link>
         <description><![CDATA[<div><strong>Clock Speed</strong> - is the speed of a computer processor, or CPU.<br>Generally speaking, the higher number of pulses per second, the faster computer processor will be able to process information. The clock speed is measured in Hz, typically either megahertz (MHz) or gigahertz (GHz). For example, a 4GHz processor performs 4,000,000,000 clock cycles per second. A computer running at 1GHz can carry out a thousand million instructions per second a modern desktop computer runs extremely quickly, typically three thousand million times a second (3 GHz).<br><br></div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-03-29 09:06:50 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247178278</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/symbat2030/3bg3760rr59x/wish/247179429</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/261494463/73a4b3cc7c8189e6f075d6599f1a7c13/kit.jpg" />
         <pubDate>2018-03-29 09:12:34 UTC</pubDate>
         <guid>https://padlet.com/symbat2030/3bg3760rr59x/wish/247179429</guid>
      </item>
   </channel>
</rss>
