Cory Bloor

Results 26 issues of Cory Bloor

Support for writing to stdout was requested in #25 so guardonce could be integrated with other tools. I considered adding support for reading from stdin to go along with that,...

Currently, UTF-8 is the only supported encoding for guardonce. UTF-16 and UTF-32 files cannot be processed. I began to improve the handling of those files in #22 by ensuring they...

It would be nice if checkguard could warn about include guards using symbols are reserved for the compiler or standard library. It's an easy thing to forget about when picking...

It seems [a lot of people](http://stackoverflow.com/q/1143936/331041) like the idea of using both include guards and #pragma once in the same file. I'm not a fan. \ Unlike just using #pragma...

When searching through files, anything within comment blocks should be ignored as irrelevant.

enhancement

It would be nice if checkguard could tell you if you had any duplicate include guards. Two files with the same guard symbol are likely to be a problem, but...

enhancement

`histogram.py` errors if all values are equal. e.g. ``` vagrant@localhost:~/ws$ echo -e '16\n16\n16\n' | ~/ws/bitly/data_hacks/histogram.py Traceback (most recent call last): File "/home/vagrant/ws/bitly/data_hacks/histogram.py", line 300, in options.agg_key_value), options) File "/home/vagrant/ws/bitly/data_hacks/histogram.py", line...

## Build Instructions 1. Install ROCm 4.5.2 2. Install CMake 3.21.3 or later 3. Install libnuma and kmod (so that `rocm_agent_enumerator` works) 4. Build rocRAND: ```bash HIPCXX=/opt/rocm/llvm/bin/clang++ \ CXX=/opt/rocm/llvm/bin/clang++ \...

This change adds the llvm-amdgpu compiler for building C++. The raison d'etre of llvm-amdgpu is really the HIP language (which has partial support right now under the CUDA category), but...

lang-c++

I'm preparing the librocprim-dev package for Debian. As part of that process, I ran spellcheck over the repo. It didn't find any particularly meaningful errors, but I figured I'd submit...