Nimrod

Results 9 issues of Nimrod

- Issue Type: `Performance` - Extension Name: `haskelly` - Extension Version: `0.5.5` - OS Version: `Linux x64 4.15.0-46-generic` - VSCode version: `1.33.1` :warning: Make sure to **attach** this file from...

This PR is to address https://github.com/google/glog/issues/804 Note: 1. Declare `LOG_OCCURRENCES_MOD_N` as a local, non-atomic variable and use `fetch_add % n` to get the exact modulo remainder. 2. Initialize `SOME_KIND_OF_LOG_EVERY_N` from...

Consider the code ```cpp static std::atomic LOG_OCCURRENCES(0), LOG_OCCURRENCES_MOD_N(0); \ ++LOG_OCCURRENCES; \ if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \ if (LOG_OCCURRENCES_MOD_N == 1) ``` Although every statement here is an...

bug

Hi, sslotin, You name a `P` [here](https://github.com/sslotin/amh-code/blob/main/simd/popcnt-lookup-16.cc#L12 ) and [here](https://github.com/sslotin/amh-code/blob/main/simd/popcnt-lookup.cc#L12), which happens to be a macro used in compilation. The fix is simple, just rename the variable. I am willing...

This pull request has been automatically generated by prose.io.

ref: https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_movemask_ps&ig_expand=4879

I have change user setting in **Base File.sublime-settings** ``` { "jsdocs_extra_tags_go_after": true, "jsdocs_extra_tags":["@Author Author","@DateTime {{datetime}}"] } ``` but when i opened any .cpp file and type /**+Enter, it only shows:...

Hi, I'm encountering an issue with llm.nvim where virtual text is not correctly aligned when lines start with a tab character. Specifically, virtual text intended to be aligned with the...