当前位置:网站首页>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 .
边栏推荐
- MySQL trigger
- July Huaqing learning-1
- Matlab struct function (structure array)
- About cache exceptions: solutions for cache avalanche, breakdown, and penetration
- Knowledge representation (KR)
- Two minutes will take you to quickly master the project structure, resources, dependencies and localization of flutter
- Select drop-down box realizes three-level linkage of provinces and cities in China
- Ecplise development environment configuration and simple web project construction
- MySQL multi table operation
- Pytorch two-layer loop to realize the segmentation of large pictures
猜你喜欢

C language structure is initialized as a function parameter

Matlab struct function (structure array)

Linux Installation and deployment lamp (apache+mysql+php)

Reinforcement learning - learning notes 3 | strategic learning

Redis's memory elimination mechanism, read this article is enough.
![[superhard core] is the core technology of redis](/img/5e/d6438f09031c2acbea17441c316a2b.jpg)
[superhard core] is the core technology of redis

The relationship between the size change of characteristic graph and various parameters before and after DL convolution operation

Master the new features of fluent 2.10

About cache exceptions: solutions for cache avalanche, breakdown, and penetration

How to clear floating?
随机推荐
Principle and performance analysis of lepton lossless compression
The evolution of mobile cross platform technology
Understand redis persistence mechanism in one article
MySQL installation, Windows version
Select drop-down box realizes three-level linkage of provinces and cities in China
MySQL constraints
How does MySQL execute an SQL statement?
GPS數據格式轉換[通俗易懂]
Flutter2 heavy release supports web and desktop applications
Design of music box based on assembly language
[superhard core] is the core technology of redis
ZABBIX ODBC database monitoring
Time tools
MySQL view
PXE startup configuration and principle
Matlab label2idx function (convert the label matrix into a cell array with linear index)
Matlab imoverlay function (burn binary mask into two-dimensional image)
Learn JVM garbage collection 05 - root node enumeration, security points, and security zones (hotspot)
How to clear floating?
Ecplise development environment configuration and simple web project construction