当前位置:网站首页>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 .
边栏推荐
- Check the debug port information in rancher and do idea remote JVM debug
- SENT协议译码的深入探讨
- One article tells the latest and complete learning materials of flutter
- The relationship between the size change of characteristic graph and various parameters before and after DL convolution operation
- Take you two minutes to quickly master the route and navigation of flutter
- Video networkstate property
- Get the variable address of structure member in C language
- Learn the memory management of JVM 03 - Method area and meta space of JVM
- Two minutes will take you to quickly master the project structure, resources, dependencies and localization of flutter
- Summary of C language learning problems (VS)
猜你喜欢

7月华清学习-1

Master-slave mode of redis cluster

Pytoch uses torchnet Classerrormeter in meter

The evolution of mobile cross platform technology

Mmclassification training custom data

Ecplise development environment configuration and simple web project construction

MySQL splits strings for conditional queries

Pytoch implements tf Functions of the gather() function

MySQL storage engine

Flutter2 heavy release supports web and desktop applications
随机推荐
Instance + source code = see through 128 traps
Why learn harmonyos and how to get started quickly?
ZABBIX customized monitoring disk IO performance
Semantic segmentation experiment: UNET network /msrc2 dataset
How can beginners learn flutter efficiently?
Solve the error 1045 of Navicat creating local connection -access denied for user [email protected] (using password
How does MySQL execute an SQL statement?
Master the new features of fluent 2.10
Seven ways to achieve vertical centering
Intern position selection and simplified career development planning in Internet companies
什么是数字化存在?数字化转型要先从数字化存在开始
C language structure is initialized as a function parameter
Complete activity switching according to sliding
MySQL constraints
MySQL transaction
What is digital existence? Digital transformation starts with digital existence
手机 CPU 架构类型了解
Take you two minutes to quickly master the route and navigation of flutter
Solution to order timeout unpaid
MySQL trigger