Understanding Binary Conversion and Computer Performance
Classified in Computers
Written at on English with a size of 3.88 KB.
Binary Conversion
Single-Precision Floating-Point
Format: 1 sign bit, 8 exponent bits, 23 fraction bits
Bias: +127 (decimal to binary), -127 (binary to decimal)
Double-Precision Floating-Point
Format: 1 sign bit, 11 exponent bits, 52 fraction bits
Bias: +1023 (decimal to binary), -1023 (binary to decimal)
Example: -17.6875 (Single-Precision)
- Sign Bit: + = 0, - = 1 (In this case, 1)
- Integer Part to Binary: Repeatedly divide the integer part by 2 and record the remainders.
- Fractional Part to Binary: Repeatedly multiply the fractional part by 2 and record the integer parts.
- Combine and Normalize: Combine the binary integer and fractional parts. Normalize to the form 1.xxx * 2^exponent.
- Calculate Exponent: Add the bias to the exponent.
Divide | Answer | Remainder |
---|---|---|
17 / 2 | 8 | 1 |
8 / 2 | 4 | 0 |
4 / 2 | 2 | 0 |
2 / 2 | 1 | 0 |
1 / 2 | 0 | 1 |
Multiply | Answer | Bit |
---|---|---|
0.6875 * 2 | 1.375 | 1 |
0.375 * 2 | 0.75 | 0 |
0.75 * 2 | 1.5 | 1 |
0.5 * 2 | 1.0 | 1 |
0.0 * 2 | 0.0 | 0 |
Binary Representation: 1 10001011 00011011000000000000000
Explanation:
- Sign bit: 1 (negative)
- Exponent: 4 + 127 (bias) = 131 = 10000011
- Fraction: 000110110...
Example: 0 01111100 01110000... (Single-Precision)
- Sign Bit: 0 (positive)
- Exponent: 01111100 = 124. Subtract the bias (127): 124 - 127 = -3
- Fraction: 01110000... This represents the fractional part of the normalized binary number (1.fraction).
- Calculate Value: 1.0111 * 2^-3 = 1.4375 * 2^-3 = 0.1796875
Modern Trends in Computer Performance
Annual performance improvement is slowing down to around 20%. Transistor count is still increasing, but at a slower rate. Multi-thread parallelism and hardware accelerators are becoming increasingly important for boosting performance.
Historical Contributions to Performance
- Better processes (faster devices): ~20%
- Better circuits/pipelines: ~15%
- Better organization/architecture: ~15%
Key Performance Equations
Equation Name | Equation | Unit |
---|---|---|
Performance | 1 / Execution Time | |
Speedup (A over B) | Execution Time of B / Execution Time of A | Ratio |
Performance Improvement | (New Performance - Old Performance) / Old Performance | Percent |
Execution Time | Clock Cycle Time * CPI * Number of Instructions | Seconds |
Clock Cycles Per Instruction (CPI) | CPU Clock Cycles / Number of Instructions | |
Number of Instructions | Clock Cycles / CPI | Number |
CPU Clock Cycles | Number of Instructions * CPI | |
Clock Cycle Time (CCT) | 1 / Clock Speed | |
CPU Execution Time | CPU Clock Cycles * CCT | |
Clock Frequency/Speed | 1 / Clock Cycle Time | Hertz (Hz) |
Throughput | Instructions Per Cycle (IPC) * Clock Speed | Jobs/minute |
Instructions Per Second (IPS) | Clock Speed / CPI | Instructions/second |