高效能c¶
簡介:¶
為了追求病態效能潔癖 需要先看過Mix c & ASM
前製作業¶
測試平台規格¶
規格 | 參數 |
---|---|
Compiler | gcc (GCC) 8.1.0 |
Architecture: | x86_64 |
CPU op-mode(s): | 32-bit, 64-bit |
Byte Order: | Little Endian |
CPU(s): | 4 |
On-line CPU(s) list: | 0-3 |
Thread(s) per core: | 2 |
Core(s) per socket: | 2 |
Socket(s): | 1 |
NUMA node(s): | 1 |
Vendor ID: | GenuineIntel |
CPU family: | 6 |
Model: | 61 |
Model name: | Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz |
Stepping: | 4 |
CPU MHz: | 2702.991 |
CPU max MHz: | 3000.0000 |
CPU min MHz: | 500.0000 |
BogoMIPS: | 4790.41 |
Virtualization: | VT-x |
L1d cache: | 32K |
L1i cache: | 32K |
L2 cache: | 256K |
L3 cache: | 4096K |
NUMA node0 CPU(s): | 0-3 |
Flags: | fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cplvmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdseed adx smapintel_pt xsaveopt ibpb ibrs stibp dtherm ida arat pln pts |
測試時間程式¶
Timespec
tv_sec:1970到現在的秒數
tv_nsec:在tv_sec該秒數內又走了多少奈秒
1970到現在的奈秒=tv_sec*10e9+tv_nsec
1 2 3 4 5 | struct timespec { time_t tv_sec; /* seconds */ long tv_nsec; /* nanoseconds */ }; |
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #include <time.h> #include <stdio.h> double diff_in_sec(struct timespec,struct timespec); long diff_in_nsec(struct timespec,struct timespec); double diff_in_sec(struct timespec t1, struct timespec t2) { long diff=diff_in_nsec(t1,t2); return (diff/10e9); } long diff_in_nsec(struct timespec start, struct timespec end) { return (end.tv_sec*10e9+end.tv_nsec)-(start.tv_sec*10e9+start.tv_nsec); } int main() { struct timespec start_time,end_time; clock_gettime(CLOCK_REALTIME, &start_time); for(int i=0;i<100000000;i++){ //Do Something } clock_gettime(CLOCK_REALTIME, &end_time); printf("resolution: %.10lfs\n",diff_in_sec(start_time,end_time)); printf("resolution: %ldns",diff_in_nsec(start_time,end_time)); return 0; } |
Cpu¶
Cache¶
Cache info¶
linux kernel cache info 4
1 | grep . /sys/devices/system/cpu/cpu0/cache/index*/* |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /** * struct cacheinfo - represent a cache leaf node * @id: This cache's id. It is unique among caches with the same (type, level). * @type: type of the cache - data, inst or unified * @level: represents the hierarchy in the multi-level cache * @coherency_line_size: size of each cache line usually representing * the minimum amount of data that gets transferred from memory * @number_of_sets: total number of sets, a set is a collection of cache * lines sharing the same index * @ways_of_associativity: number of ways in which a particular memory * block can be placed in the cache * @physical_line_partition: number of physical cache lines sharing the * same cachetag * @size: Total size of the cache * @shared_cpu_map: logical cpumask representing all the cpus sharing * this cache node * @attributes: bitfield representing various cache attributes * @fw_token: Unique value used to determine if different cacheinfo * structures represent a single hardware cache instance. * @disable_sysfs: indicates whether this node is visible to the user via * sysfs or not * @priv: pointer to any private data structure specific to particular * cache design * * While @of_node, @disable_sysfs and @priv are used for internal book * keeping, the remaining members form the core properties of the cache */ |
False Sharing¶
False_sharing
1 2 3 4 5 | struct foo { int x; //char xx[60]; int y; }; |
Sharing
1 2 3 4 5 | struct foo { int x; char xx[60]; int y; }; |
Full_code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | #include <time.h> #include <stdio.h> #include <pthread.h> double diff_in_sec(struct timespec,struct timespec); long diff_in_nsec(struct timespec,struct timespec); double diff_in_sec(struct timespec t1, struct timespec t2) { long diff=diff_in_nsec(t1,t2); return (diff/10e9); } long diff_in_nsec(struct timespec start, struct timespec end) { return (end.tv_sec*10e9+end.tv_nsec)-(start.tv_sec*10e9+start.tv_nsec); } struct foo { int x; //__________________ //char xx[60]; //comment out this line will be False sharing //__________________ int y; };//__attribute__((align(64)));__attribute__((packed)); static struct foo f; int sum_a(void) { int s = 0; int i; for (i = 0; i < 1000000000; ++i) s += f.x; return s; } void inc_b(void) { int i; for (i = 0; i < 1000000000; ++i) ++f.y; } t(){ pthread_t id; pthread_create(&id,NULL,(void *) sum_a,NULL); pthread_t id2; pthread_create(&id2,NULL,(void *) inc_b,NULL); pthread_join(id,NULL); pthread_join(id2,NULL); } /*TODO:mode*/ o(){ sum_a(); inc_b(); } void main(){ printf("%d\n",sizeof(f)); struct timespec start_time,end_time; clock_gettime(CLOCK_REALTIME, &start_time); t(); clock_gettime(CLOCK_REALTIME, &end_time); printf("%.10lfs\t%ldns",diff_in_sec(start_time,end_time),diff_in_nsec(start_time,end_time)); } |
compiler&run
1 2 | gcc -o file file.c -pthread ./file |
Sharing | False sharing | |
---|---|---|
delay(s) | 2.947s | 8.005s |
Memory¶
padding¶
gcc will auto padding in 32bit
padding for 64bit system
1 2 3 4 5 | struct foo { int x; char xx[1]; int y; }__attribute__((align(64))); |
gcc without padding
1 2 3 4 5 | struct foo { int x; char xx[1]; int y; }__attribute__((packed)); |