search
HomeCommon ProblemWhat is the maximum speed of pcie3.0x4

The theoretical maximum read or write speed of PCIe3.0x4 is 4GB/s. Regardless of protocol overhead, 4GB/4K 4K IOs can be transmitted per second. The value is 1M, which means the theoretical maximum IOPS is 1000K. Therefore, no matter what media is used in the underlying layer of an SSD, whether it is flash or 3D xpoint, the interface speed is only so low, and the maximum IOPS cannot exceed this value.

What is the maximum speed of pcie3.0x4

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

Introduction to PCIe interface

PCIe has developed to the present, and the speed is faster than the previous generation.

What is the maximum speed of pcie3.0x4

Link Width line, we see X1, X2, X4..., what does this mean? This refers to the number of lanes (Lane) of the PCIe connection. Just like highways, there are single lanes, 2 lanes, and 4 lanes. However, highways with 8 lanes or more are not common, but PCIe can have up to 32 lanes.

What is the maximum speed of pcie3.0x4

The PCIe connection between two devices is called a Link, as shown in the figure below:

What is the maximum speed of pcie3.0x4

From A To B, there is a two-way connection. The car can drive from A to B. At the same time, the car can also drive from B to A, each going its own way. There are dedicated sending and receiving channels between two PCIe devices, and data can be transmitted in both directions at the same time. PCIe spec calls this working mode dual-simplex mode, which can be understood as full-duplex mode.

What is the working mode of SATA?

What is the maximum speed of pcie3.0x4

Like PCIe, SATA also has independent sending and receiving channels, but it is different from the PCIe working mode: only one channel can transmit data at the same time. In other words, if you send data on one channel, you cannot receive data on the other channel, and vice versa. This working mode should be half-duplex mode. PCIe is like our mobile phone, both parties can talk at the same time, while SATA is like a walkie-talkie. When one person is talking, the other person can only listen but not speak.

Go back to the previous table of PCIe bandwidth. The bandwidth above, such as PCIe3.0x1, has a bandwidth of 2GB/s, which refers to the two-way bandwidth, that is, the read and write bandwidth. If it refers only to reading or writing, the value should be halved, that is, a reading speed or writing speed of 1GB/s.

Let’s take a look at how the bandwidth in the table is calculated.

PCIe is a serial bus. The online bit transmission rate of PCIe1.0 is 2.5Gb/s. The physical layer uses 8/10 encoding, that is, 8-bit data. The actual physical line is 10 bits need to be transmitted, so:

PCIe1.0 x 1的带宽=(2.5Gb/s x 2(双向通道))/ 10bit = 0.5GB/s

This is the bandwidth of a single Lane. If there are several Lanes, then the entire bandwidth is 0.5GB/s multiplied by the number of Lanes.

The online bit transmission rate of PCIe2.0 has doubled based on PCIe1.0 to 5Gb/s. The physical layer also uses 8/10 encoding, so:

PCIe2.0 x 1的带宽=(5Gb/s x 2(双向通道))/ 10bit = 1GB/s

Similarly, the bandwidth is 1GB/s multiplied by the number of Lanes.

The online bit transmission rate of PCIe3.0 has not doubled based on PCIe2.0. It is not 10Gb/s, but 8Gb/s, but the physical layer uses 128/130 encoding for data transmission. , so:

PCIe3.0 x 1的带宽=(8Gb/s x 2(双向通道))/ 8bit = 2GB/s

Similarly, the bandwidth is 2GB/s multiplied by the number of Lanes.

Due to the use of 128/130 encoding, 128-bit data only adds an additional 2 bits of overhead, and the effective data transmission ratio increases. Although the online bit transmission rate has not doubled, the effective data bandwidth is still It is doubled based on PCIe2.0.

It is worth mentioning here that the data bandwidth calculated above has taken into account 8/10 or 128/130 encoding. Therefore, when calculating bandwidth, there is no need to consider online encoding.

Unlike SATA single channel, PCIe connection can expand the bandwidth by increasing the number of channels, which is full of flexibility. The higher the number of channels, the faster the speed. However, the higher the number of channels, the higher the cost, takes up more space, and consumes more power. Therefore, how many channels to use should be a comprehensive consideration between performance and other factors. Considering performance alone, the maximum bandwidth of PCIe can reach 64GB/s, and the bandwidth corresponding to PCIe 3.0 x 32 is a terrifying figure. However, existing PCIe interface SSDs generally use up to 4 channels, such as PCIe3.0x4, with a bidirectional bandwidth of 8GB/s and a read or write bandwidth of 4GB/s.

What is the maximum speed of pcie3.0x4

The transfer speed is several GB/s, which is great for reading and writing small movies.

Here, let’s calculate the theoretical maximum 4K IOPS of PCIe3.0x4. The theoretical maximum read or write speed of PCIe3.0x4 is 4GB/s. Regardless of protocol overhead, it can transmit 4GB/4K 4K IOs per second. This value is 1M, which means the theoretical maximum IOPS is 1000K. Therefore, for an SSD, no matter what media you use at the bottom, whether it is flash or 3D xpoint, the interface speed is only so low, and the maximum IOPS cannot exceed this value.

PCIe is developed from PCI. The "e" of PCIe is the abbreviation of express, which means fast. How can PCIe be faster than PCI (or PCI-X)? PCIe is fundamentally different from PCI in terms of physical transmission: PCI uses parallel port to transmit data, while PCIe uses serial port transmission. My PCI parallel bus can transmit 32 bits or 64 bits in a single clock cycle. Why can't it be compared to your serial bus that transmits 1 bit of data in a single clock cycle?

When the actual clock frequency is relatively low, the parallel port is indeed faster than the serial port because it can transmit several bits at the same time. With the development of technology, the data transmission rate is required to be faster and faster, and the clock frequency is also required to be faster and faster. However, the parallel bus clock frequency cannot be as fast as you want.

What is the maximum speed of pcie3.0x4

At the sending end, the data is transmitted out on a certain clock edge (the first rising edge of the clock on the left), and at the receiving end, the data is transmitted on the next clock edge (the first rising edge of the clock on the right). Two rising edges) receive. Therefore, to correctly collect data at the receiving end, the clock cycle must be greater than the data transmission time (flight time from the sending end to the receiving end). Limited by the data transmission time (which also increases as the length of the data line increases), the clock frequency cannot be made too high. In addition, when the clock signal is transmitted online, there will also be a phase offset (clock skew), which affects the data collection at the receiving end; also, in parallel transmission, the receiving end must wait for the slowest bit of data to arrive before it can lock the entire Data (signal skew).

PCIe does not have these problems when using the serial bus for data transmission. It has no external clock signal. Its clock information is embedded in the data stream through 8/10 encoding or 128/130 encoding. The receiving end can recover the clock information from the data stream. Therefore, it is not limited by the data transmission time on the line. You It doesn’t matter how long the wire is, or how fast your data transmission frequency is; without an external clock signal, there is naturally no so-called clock skew problem; since it is serial transmission, only one bit is transmitted, so there is no signal skew problem. However, if multiple lanes are used to transmit data (there is parallelism in serial, haha), the problem comes back, because the receiving end also has to wait for the data on the slowest lane to arrive before it can process the entire data.

Basic knowledge of the PCIe bus

Different from the PCI bus, the PCIe bus uses an end-to-end connection method. Each end can only connect to one device. The two devices are the data sending end and the data receiving end. In addition to bus links, the PCIe bus also has multiple layers. The sender will pass through these layers when sending data, and the receiver will also use these layers when receiving data. The hierarchical structure used by the PCIe bus is similar to the network protocol stack.

The PCIe link uses "end-to-end data transmission mode". Both the sending end and the receiving end contain TX (transmitting logic) and RX (receiving logic), and their structure is as shown in the figure.

What is the maximum speed of pcie3.0x4

As shown in the figure above, in a data path (Lane) of the physical link of the PCIe bus, there are two sets of differential signals, a total of 4 signal lines. The TX component at the transmitting end and the RX component at the receiving end are connected using a set of differential signals. This link is also called the transmitting link at the transmitting end and is also the receiving link at the receiving end; while the RX component at the transmitting end and the TX component at the receiving end use another set of differential signals. A group of differential signal connections, this link is also called the receive link at the sender end and is also the transmit link at the receiver end. A PCIe link can be composed of multiple Lanes.

The electrical specification for high-speed differential signals requires that a capacitor be connected in series to the transmitting end for AC coupling. This capacitor is also called an AC coupling capacitor. The PCIe link uses differential signals for data transmission. A differential signal consists of two signals, D and D-. The signal receiving end compares the difference between the two signals to determine whether the sending end sends a logic "1" or a logic "0" ".

Compared with single-ended signals, differential signals are more resistant to interference because differential signals require "equal length", "equal width", "close proximity" during wiring, and are on the same layer. Therefore, the external interference noise will be loaded on the D and D- signals with "the same value" and "simultaneously". The difference is 0 under ideal circumstances, which will have a small impact on the logic value of the signal. Differential signaling can therefore use higher bus frequencies.

In addition, the use of differential signals can effectively suppress electromagnetic interference EMI (Electro Magnetic Interference). Because the differential signals D and D- are very close and have equal signal amplitudes and opposite polarities. The amplitude of the coupled electromagnetic field between these two wires and the ground wire is equal and will cancel each other out, so the differential signal causes less electromagnetic interference to the outside world. Of course, the shortcomings of differential signals are also obvious. First, differential signals use two signals to transmit one bit of data; second, the wiring of differential signals is relatively strict.

PCIe link can be composed of multiple Lanes. Currently, PCIe link can support 1, 2, 4, 8, 12, 16 and 32 Lanes, namely ×1, ×2, ×4, ×8 , ×12, ×16 and ×32 width PCIe links. The bus frequency used on each Lane is related to the version of the PCIe bus used.

The first PCIe bus specification is V1.0, followed by V1.0a, V1.1, V2.0 and V2.1. The latest specification of the PCIe bus is currently V2.1, while V3.0 is under development and is expected to be released in 2010. Different PCIe bus specifications define different bus frequencies and link coding methods, as shown in Table 41.

The relationship between PCIe bus specification and bus frequency and coding

##1.x1.25GHz2.5GT/s8/10b encoding2.x2.5GHz5GT/s8/10b encoding##3.0As shown in the table above, different PCIe bus specifications use different bus frequencies and use different data encoding methods. PCIe bus V1.x and V2.0 specifications use 8/10b encoding in the physical layer, that is, 10 bits on the PCIe link contain 8 bits of valid data; while the V3.0 specification uses 128/130b encoding, that is The 130 bits on the PCIe link contain 128 bits of valid data.
PCIe bus specification Bus frequency[1 ] Peak bandwidth of a single Lane Encoding method
4GHz 8GT/s 128/130b encoding

As shown in the above table, although the bus frequency used by the V3.0 specification is only 4GHz, its effective bandwidth is twice that of V2.x. The following will take the V2.x specification as an example to illustrate the peak bandwidth that PCIe links of different widths can provide, as shown in Table 42.

Peak bandwidth of PCIe bus

Data bit width of PCIe busPeak bandwidth (GT/s)As shown in the above table, the ×32 PCIe link can provide 160GT/s The link bandwidth is much higher than the peak bandwidth that the PCI/PCI-X bus can provide. The upcoming PCIe V3.0 specification uses a 4GHz bus frequency, which will further increase the peak bandwidth of the PCIe link.
×1 ×2 ×4 ×8 ×12 ×16 ×32
5 10 20 40 60 80 160

In the PCIe bus, use GT (Gigatransfer) to calculate the peak bandwidth of the PCIe link. GT is the peak bandwidth transmitted on the PCIe link, and its calculation formula is bus frequency × data bit width × 2.

In the PCIe bus, there are many factors that affect the effective bandwidth, so its effective bandwidth is difficult to calculate. Despite this, the effective bandwidth provided by the PCIe bus is still much higher than that of the PCI bus. The PCIe bus also has its weaknesses, the most prominent of which is transmission latency.

The PCIe link uses serial mode for data transmission. However, inside the chip, the data bus is still parallel, so the PCIe link interface needs to perform serial-to-parallel conversion. This serial-to-parallel conversion will produce a larger Delay. In addition, data packets on the PCIe bus need to pass through the transaction layer, data link layer and physical layer. These data packets will also cause delays when passing through these layers.

Among devices based on the PCIe bus, ×1 PCIe links are the most common, while ×12 PCIe links are rare, and ×4 and ×8 PCIe devices are also rare. Intel usually integrates multiple ×1 PCIe links in the ICH to connect low-speed peripherals, and integrates a ×16 PCIe link in the MCH to connect the graphics card controller. PowerPC processors usually support ×8, ×4, ×2, and ×1 PCIe links.

Data transmission between physical links on the PCIe bus uses a clock-based synchronous transmission mechanism, but there is no clock line on the physical link. The receiving end of the PCIe bus contains a clock recovery module CDR (Clock Data Recovery). CDR will extract the receive clock from the received message to perform synchronous data transfer.

It is worth noting that in a PCIe device, in addition to extracting the clock from the message, REFCLK and REFCLK-signal pairs are also used as the local reference clock

More related knowledge, Please visit the

FAQ

column!

The above is the detailed content of What is the maximum speed of pcie3.0x4. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
请关闭电源并连接PCIe电源线请关闭电源并连接PCIe电源线Feb 19, 2024 am 11:09 AM

如果您看到错误消息请关闭电源并连接Windows11/10PC上的PCIe电源线,请阅读此帖子以了解如何解决该问题。当PCIe设备(通常是图形卡)未能获得足够的电力时,可能会触发此错误。可能的原因包括PCIe电源线故障、连接问题或电源不足。若未正确连接电源线,则也可能导致此问题。请关闭电源并连接此显卡的PCIE电源线(S)初次使用个人电脑的用户或缺乏组装计算机系统经验的人经常会遇到这种问题。如果PCIe电缆因振动或时间推移而松动,也可能会导致该错误消息的出现。本文将介绍解决这一问题所需采取的步骤

pcie4.0和pcie3.0接口一样吗pcie4.0和pcie3.0接口一样吗Mar 13, 2023 pm 04:39 PM

pcie4.0和pcie3.0接口不一样,它们是两个不同版本的PCIe标准。两者的区别:1、PCIe4.0提供了更快的数据传输速度,高达16GT/s,是PCIe3.0的两倍;2、PCIe 4.0支持更多的带宽,最高可达69.6GB/s,而 PCIe3.0最高只能支持32GB/s;3、PCIe4.0支持更多的通道,可以支持更多的设备;4、PCIe4.0支持更低的电力消耗。

延迟 1 年,PCIe 6.0/7.0 规范部署遇阻碍延迟 1 年,PCIe 6.0/7.0 规范部署遇阻碍Jun 15, 2024 pm 04:45 PM

本站6月15日消息,外设组件互连特别兴趣小组(PCI-SIG)本周召开举办2024开发者大会,公布了PCIe6.0和PCIe7.0的最新进展情况,表示上述两个标准虽然已取得一定进展,但部署普及时间要比预期要慢。PCI-SIG目前已经推迟启动“一致性计划”(ComplianceProgram),PCIe6.0的初步一致性测试原定于今年3月开始,目前已经推迟到“第2季度”,也就是会在本月底前测试。2023年(上)和2024年(下)的PCIe标准发布路线图该机构表示PCIe6.0深度一致性测试将于20

pcie3.0x4最大速度是多少pcie3.0x4最大速度是多少Mar 15, 2023 pm 05:09 PM

PCIe3.0x4理论最大读或者写的速度为4GB/s,不考虑协议开销,每秒可以传输4GB/4K个4K大小的IO,该值为1M,即理论上最大IOPS为1000K。因此,一个SSD不管底层用什么介质,flash还是3d xpoint,接口速度就这么块,最大IOPS是不可能超过这个值的。

PCIe 7.0 规范正式初稿(0.5 版本)公布,仍有望于明年全面发布PCIe 7.0 规范正式初稿(0.5 版本)公布,仍有望于明年全面发布Apr 04, 2024 am 08:37 AM

本站4月3日消息,PCIe规范制定组织PCI-SIG近日宣布PCIe7.0规范的0.5版本,也就是其正式初稿现已向PCI-SIG成员公布。相较于2022年初发布的PCIe6.0规范,PCIe7.0规范在沿用PAM4信号调制方式的同时再次翻倍速率,可实现128GT/s的原始数据速率,并在x16配置下实现512GB/s的双向比特率。PCIe7.0架构的开发重点是提升信道参数、覆盖范围和能源效率,旨在为800G以太网、AI/ML工作负载,超大规模数据中心、高性能计算、量子计算、云等数据密集型应用提供可

Gamescom 2024 | Asus and MSI reveal innovative quick-release mechanisms for GPUs and M.2 SSDsGamescom 2024 | Asus and MSI reveal innovative quick-release mechanisms for GPUs and M.2 SSDsAug 25, 2024 am 06:30 AM

At Gamescom 2024, Asus and MSI were really turning heads with some cool quick-release mechanisms for GPUs and M.2 SSDs. These new features aim to make life easier for folks building PCs, especially when dealing with those hefty components. Asus rolle

PCIe 6 发热咋办?英特尔提交新驱动,通过控制总线速度缓解PCIe 6 发热咋办?英特尔提交新驱动,通过控制总线速度缓解Jun 04, 2024 am 10:28 AM

本站5月11日消息,PCIe版本更迭带来了更高的带宽、更快的传输速度,同时也带来了更多的热量。英特尔公司近日发布Linux驱动程序,通过开源的“PCIe带宽控制器”来遏制热量,在热量达到一定阈值时自动控制链路速度。本站注:PCIe版本更迭不仅提高了传输速度,还要求更好的信号完整性和更低的信号损耗,因此往往需要更高的时钟频率、更大的功率和编码优化,而所有这些都会产生额外的热量。英特尔工程师IlpoJärvinen在最新的补丁说明中写道:“该系列补丁仅增加了对控制PCIe链路速度的支持。控制PCIe

改进HoloLens内部PCIe数据链接传输:微软分享AR/VR专利改进HoloLens内部PCIe数据链接传输:微软分享AR/VR专利Jan 03, 2024 pm 02:05 PM

(映维网Nweon2023年12月27日)有线连接通常称为“硬链接”,它将一个节点物理地连接到另一个节点。一种有线连接是PCIe。PCIe是一种用于连接高速节点的接口,而尽管诸如PCIe等高速连接终端和协议提供了实质性的优势,但所述类型的终端需要高功率运行。对于头显这样的电池供电计算架构,这会给系统带来巨大的负担。在名为“Errorrecoveryandpowermanagementbetweennodesofaninterconnectionnetwork”的专利申请中,微软介绍了通过从错误条

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools