Gibibyte per second to Kibibyte per second
GiB/s
KiBps
Conversion History
| Conversion | Reuse | Delete |
|---|---|---|
1 GiB/s (Gibibyte per second) → 1048576 KiBps (Kibibyte per second) Just now |
Quick Reference Table (Gibibyte per second to Kibibyte per second)
| Gibibyte per second (GiB/s) | Kibibyte per second (KiBps) |
|---|---|
| 0.5 | 524,288 |
| 1 | 1,048,576 |
| 7 | 7,340,032 |
| 12 | 12,582,912 |
| 50 | 52,428,800 |
| 100 | 104,857,600 |
| 1,008 | 1,056,964,608 |
About Gibibyte per second (GiB/s)
A gibibyte per second (GiB/s) equals 1,073,741,824 bytes per second and is used in high-performance storage and memory bandwidth measurements when binary precision is required. GPU memory bandwidth figures in technical documentation sometimes appear in GiB/s — an NVIDIA RTX 4090 features 1,008 GiB/s of GDDR6X memory bandwidth. NVMe SSD sequential read speeds are often reported as both GB/s (decimal) and GiB/s (binary) in reviews and datasheets.
The NVIDIA RTX 4090 GPU has 1,008 GiB/s of memory bandwidth (~1,082 GB/s in decimal). DDR5-6400 dual-channel memory provides about 100 GiB/s.
About Kibibyte per second (KiBps)
A kibibyte per second (KiB/s) equals 1,024 bytes per second — the binary IEC equivalent of kilobyte per second. Operating systems such as Linux, macOS, and Windows 10+ increasingly use KiB/s when reporting file transfer speeds to be precise about the binary calculation. A kibibyte per second is about 2.4% more than a kilobyte per second. The distinction matters in embedded systems, microcontrollers, and protocol specifications where exact byte counts determine buffer allocation.
Linux file transfer tools like rsync report speeds in KiB/s by default. A serial link running at 9,600 baud transfers roughly 1.17 KiB/s (1,200 bytes/s).
Gibibyte per second – Frequently Asked Questions
Why do GPU specs sometimes use GiB/s instead of GB/s?
GPU memory is addressed in binary (power-of-2 bus widths like 256-bit or 384-bit), so binary units naturally describe the actual hardware capability. Some vendors use GiB/s to be precise, while marketing materials prefer the larger-sounding GB/s number. The RTX 4090's 1,008 GiB/s is 1,082 GB/s — the latter sounds faster.
How much GiB/s bandwidth does DDR5 RAM provide?
DDR5-6000 in dual-channel mode provides about 93 GiB/s (100 GB/s). Quad-channel DDR5 on workstation platforms doubles this to ~186 GiB/s. The actual usable bandwidth depends on memory access patterns — random access achieves far less than sequential streaming.
What is the difference between memory bandwidth and storage bandwidth?
Memory bandwidth (50–100+ GiB/s for DDR5) measures how fast the CPU can read/write RAM. Storage bandwidth (3–14 GiB/s for NVMe SSDs) measures persistent data transfer. Memory is 10–30× faster because DRAM has nanosecond latency while NAND flash has microsecond latency. They serve different roles in the data hierarchy.
Can I measure GiB/s bandwidth on my own system?
Yes. For memory bandwidth, run a STREAM benchmark (available for Linux and Windows). For storage, use fio or CrystalDiskMark. GPU memory bandwidth can be tested with gpu-burn or vendor-provided tools. All will report in either GiB/s or GB/s depending on the tool — check which one.
At what GiB/s does data transfer become limited by physics?
Electrical signalling on copper traces maxes out around 112 Gbps (about 13 GiB/s) per lane with current technology. Beyond that, optics take over — silicon photonics interconnects can push individual channels to 200+ Gbps. The physical speed of light in fiber is not the limit; it is the modulation and detection electronics.
Kibibyte per second – Frequently Asked Questions
Why does rsync show KiB/s instead of kB/s?
Rsync follows IEC binary conventions because it deals with file sizes that are measured in binary units by the filesystem. Since files occupy whole filesystem blocks (typically 4 KiB), reporting transfer speed in KiB/s makes the math consistent with actual data moved on disk.
Is KiB/s faster or slower than kB/s?
1 KiB/s (1,024 bytes/second) is 2.4% faster than 1 kB/s (1,000 bytes/second). The difference is tiny at this scale but matters when you are designing buffer sizes for embedded systems where every byte of RAM counts.
Why did Windows switch to showing KiB in some places?
Microsoft started using binary units more consistently in Windows 10 after years of ambiguity where "KB" sometimes meant 1,000 and sometimes 1,024 bytes. The shift toward KiB follows IEC recommendations and reduces confusion, though the transition is still incomplete across all Windows tools.
What speed in KiB/s did floppy disk drives achieve?
A 3.5-inch floppy drive transferred data at about 31–62 KiB/s (250–500 kbps). Copying a full 1.44 MB floppy took roughly 25–50 seconds. For comparison, a modern NVMe SSD is about 100,000 times faster.
When does the KiB vs kB distinction cause real problems?
In embedded systems with tight memory constraints, confusing 1,024 with 1,000 can overflow a buffer. In network protocols, a spec written in KiB/s being implemented as kB/s means transmitting 2.4% less data than expected per second — enough to cause timing violations in real-time systems.