当前位置:网站首页>Programming skills for optimizing program performance
Programming skills for optimizing program performance
2022-07-05 12:28:00 【yang881221】
After reading 《 Deep understanding of computer systems 》, Our programming is not just simple code . Instead, we should combine the foundation of the system to write more optimized code . We write code by understanding how computers work . Look at our code at a lower level , Perhaps a simple loop can change the overall efficiency of the code .
Modern compilers are complex , It does a lot of work for the program , The goal is to make the program safer and faster . For example, our compilation optimization options -Og -O1 -O2 -O3 etc. , But also due to optimization , Our machine instructions are arranged “ Beyond recognition ”, If you don't believe it, you can use the optimized code to disassemble , It will be much more than you think .
Here are a few guidelines that apply
1. Eliminate the inefficiency of the cycle , Never add extra calculations , What should be moved outside the circulation is moved outside the circulation
2. Reduce procedure calls , Of course, this is a double-edged sword , For example, the use of inline functions , But if you reduce it too much , It will make our code logic messy
3. Reduce unnecessary memory references , The best examples here are copy constructors and move constructors . After all, deposit access and cpu Compared with the execution cycle of , Too slow .
4. Try to improve cache shooting , This requires writing code , Try to put frequently accessed data into one cacheline in , Or do cacheline Alignment of , Here is another double-edged sword , It may waste a lot of space after alignment , After all cache Still valuable .
5. Loop unrolling , Use circular blocking , Reduce the number of iterations of the loop , Increase the number of elements calculated per iteration . Reduces the number of operations that do not directly contribute to program results , Provide some ways to optimize your code , Reduce the number of operations on the critical path in the whole calculation .
6. Improve parallelism , Contemporary computer systems are basically multi-core architecture , Different cores can process different data , Of course, the splitting of data here is very important , In particular, the correlation of data has a great impact on parallelism .
7. Write code suitable for conditional delivery , After all, branch prediction is miss The price is relatively high , Need to fill in the assembly line again .
8. Understand memory performance , Memory bus bandwidth , If you can use register variables, you don't need memory variables .
9. By using multiple accumulation variables and recombination techniques , Find ways to improve the parallelism of instruction sets .
10. Try to reduce cache line Of miss and cache The shaking of .
11. Disassemble the code of high-level language , Find ways to optimize from the assembly .
边栏推荐
- Is investment and finance suitable for girls? What financial products can girls buy?
- MySQL data table operation DDL & data type
- Matlab boundarymask function (find the boundary of the divided area)
- ZABBIX 5.0 - LNMP environment compilation and installation
- Understand redis persistence mechanism in one article
- ZABBIX agent2 installation
- Take you two minutes to quickly master the route and navigation of flutter
- Solve the problem of cache and database double write data consistency
- MySQL index (1)
- Pytoch through datasets Imagefolder loads datasets directly from files
猜你喜欢

Embedded software architecture design - message interaction

ZABBIX ODBC database monitoring

How can beginners learn flutter efficiently?

Ecplise development environment configuration and simple web project construction

Four operations and derivative operations of MATLAB polynomials

Pytoch uses torchnet Classerrormeter in meter

MySQL storage engine

Anaconda creates a virtual environment and installs pytorch

Error modulenotfounderror: no module named 'cv2 aruco‘

Resnet+attention project complete code learning
随机推荐
mysql拆分字符串做条件查询
ACID事务理论
ZABBIX ODBC database monitoring
MySQL view
Just a coincidence? The mysterious technology of apple ios16 is actually the same as that of Chinese enterprises five years ago!
Third party payment interface design
ZABBIX customized monitoring disk IO performance
语义分割实验:Unet网络/MSRC2数据集
Matlab struct function (structure array)
图像超分实验:SRCNN/FSRCNN
【ijkplayer】when i compile file “compile-ffmpeg.sh“ ,it show error “No such file or directory“.
Resnet+attention project complete code learning
Swift - add navigation bar
How to design an interface?
Understanding the architecture type of mobile CPU
Reinforcement learning - learning notes 3 | strategic learning
Learn the memory management of JVM 03 - Method area and meta space of JVM
Error modulenotfounderror: no module named 'cv2 aruco‘
ZABBIX agent2 monitors mongodb templates and configuration operations
byte2String、string2Byte