摘要:
【gcc仓库里】 整个目录67w行 gcc\libstdc++-v3\include\bits\unordered_map.h 2200行代码 阅读全文
摘要:
clang++-11 02_branch.C -isystem benchmark^Cnclude -Lbenchmark/build/src -lbenchmark -g -O3 -mavx2 -mllvm -x86-asm-syntax=intel -S -o - | llvm-mca-11 - 阅读全文
摘要:
【结果】 g++ 01_superscalar.C -std=c++11 -isystem benchmark/include -Lbenchmark/build/src -lbenchmark -lpthread -o mybenchmark 【结论】 1)每次循环乘法和加法一起add_multi 阅读全文
摘要:
https://github.com/google/benchmark.git g++ test.cpp -std=c++11 -isystem benchmark/include -Lbenchmark/build/src -lbenchmark -lpthread -o mybenchmark 阅读全文
摘要:
https://www.cnblogs.com/starsea/p/5384668.html ssh连本地127.0.0.1:6022 阅读全文
摘要:
【问题】 1)备机如何发给主机 2)备机如何给客户端回响应 【如何发给主机】 参考https://yuan1028.github.io/etcd-raft-4/ 【备机如何给客户端回响应】 https://dorgenjones.github.io/2019/11/23/%E5%88%86%E5%B 阅读全文
摘要:
【问题描述】 pthread_cond_signal正常2us级别,但是有10ms级别的抖动 【先说结论】 消费者3因为等cpu调度10ms,导致生产者1也等了10ms,表现为pthread_cond_signal执行了10ms 【参考源码】 https://blog.csdn.net/qq_314 阅读全文
摘要:
1)流程 https://developer.aliyun.com/article/1275341 2)相关代码函数 https://blog.csdn.net/WANGYONGZIXUE/article/details/125953758 3)tlb所在代码目录 内存管理mm模块11w行代码 阅读全文