Results 27 issues of Erik Rigtorp

This issue is only to make it easy to find this information. If there's interest I can make a PR to add this to the documentation samples. Originally published here...

Question

I was able to build rocBLAS for GFX1010 by adding "gfx1010" to this list: https://github.com/ROCmSoftwarePlatform/Tensile/blob/79f2eaec38754e4c0acf3399710f68d2b8586450/Tensile/TensileCreateLibrary.py#L1262 https://github.com/ROCmSoftwarePlatform/pytorch/issues/718 https://github.com/ROCmSoftwarePlatform/tensorflow-upstream/issues/1106

We need to add documentation on how to enable HW acceleration when using container images. Especially for common NAS devices.

**What**: Export information about individual connections **Why**: To allow prometheus alerting on slow clients and track bandwidth usage by client. **How**: Something like this: ``` gnatsd_connz_out_bytes{name="xxx", ip="host", port="port", cid="yyy"} gnatsd_connz_in_bytes{name="xxx",...

Example how to do it with github actions: https://github.com/rigtorp/MPMCQueue/blob/master/.github/workflows/ccpp.yml

enhancement

It would be good to run (libFuzzer)[https://llvm.org/docs/LibFuzzer.html] or (AFL)[http://lcamtuf.coredump.cx/afl/] on the NATS parser to make sure that no invalid inputs can cause buffer overflows.

Internal functions should have `__attribute__((visibility("hidden")))` and public API functions should have attribute `__attribute__((visibility("default")))` (or MSVC equivalent). CMake can generate appropriate macros https://cmake.org/cmake/help/v3.0/module/GenerateExportHeader.html. The reason to do this is to avoid...

Consider implementing [P0401R3 Providing size feedback in the Allocator interface](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p0401r3.html) for `flat_hash_map` and friends. I've been using `flat_hash_map` with huge pages and P0401R3 can prevent wasting memory. I added support...

question

Currently 404s to any URL shows as a hit to `/404.html`. Is this because I have `` in the HTML? Might be worthwhile to update the documentation to make it...

enhancement