YangZ2020

Results 4 issues of YangZ2020

As shown in figure below, clangd poped construction method of std::map when I write a comment. ![image](https://github.com/user-attachments/assets/233a3b54-d640-42b9-9b5f-62931b989a6d) Here are three minimum code to replay the problem. ``` #include int main()...

**环境:** Apple Macbook pro M1 macOS 15.0 (24A335) Nvim 0.10.0(配置已同步到发布最新) **编辑如下单cpp文件:** ``` using fltype = float; #include #include int main() { fltype soundspd = 100; fltype timePerSample = 100; fltype...

**使用命令行安装nvim配置:** Last login: Fri Sep 13 11:46:42 on ttys000 ❯ test -f ~/.config/nvim && mv ~/.config/nvim{,.backup} git clone https://github.com/archibate/vimrc ~/.config/nvim git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim bash ~/.config/nvim/install_deps.sh fatal: destination...

我手写了一个计算1D卷积的程序,但是发现执行起来很慢。问题描述和示例代码如下: ![WechatIMG367](https://github.com/user-attachments/assets/d6e3f0fb-6c3c-4479-8391-f7bcf5d572f0) ``` #include // #include #include int main() { std::random_device rd; std::mt19937 gen(rd()); std::uniform_real_distribution dis(1.0, 10.0); // 生成vec数据; size_t size1 = 10000; size_t size2 = 126; std::vector vec(size1 *...