05 2024 档案

摘要:我们在profiler的时候有的时候发现memset占用热点比较高。而且是std::vector::resize 带来的。这个明显是没必要的, 例如: std::vector<int> result; // 这里resize会 fill 0 result.resize(input_rows); fo 阅读全文
posted @ 2024-05-31 15:51 stdpain 阅读(71) 评论(0) 推荐(0)
摘要:format diff git diff -U0 HEAD^ | clang-format-diff-16 -p1 -i git hook .git/hooks/pre-commit #!/bin/bash STYLE=$(git config --get hooks.clangformat.sty 阅读全文
posted @ 2024-05-28 19:12 stdpain 阅读(41) 评论(0) 推荐(0)
摘要:C++11 实现 static constexpr 是按照const static 实现的,需要在 .cpp 中定义: // tmp.h class StatisTest { public: static constexpr const char literal[] = "xxx literal"; 阅读全文
posted @ 2024-05-28 17:37 stdpain 阅读(41) 评论(0) 推荐(0)