Hari Hara Naveen S
Hari Hara Naveen S
The change works for par_unseq too as parallel version of generate_n works by calling sequential generate on chunks. Will post speedups for unseq soon.
Disposed runs which took more than 0.4ms unseq : mean : 0.15  seq : 0.2 
Please note that the performance gains are actually not very significant. Reason for minimal performance gains is because std::generate_n has very similar performance when compiled with -O3 flag. Google bench...
-O3 flag seems to tries vectorize most loops. Should I try compiling HPX with O2 flag and compare performance of vectorized vs non vectorized? Often times the performance on vectorization...
Hi, I am interested in working on this issue and have been trying to implement the threadBlocks as described in the paper. One issue I have faced was with the...
The issue seems to be this JSON values can be one of 5 types namely, `string`, `double`, `uint64_t`, `int64_t` and `bool` as described over [here](https://github.com/envoyproxy/envoy/blob/c17bbb966a6e6891115f29f814d801e3ff4ee977/source/common/json/json_streamer.h#L50) But we have defined formatter...
The [PR](https://github.com/STEllAR-GROUP/hpx/pull/6018) The first error seems pretty self explanatory second is because the variable is not initialized is loop body third is because of 2 increments being done in the...
Tried to replicate this bug I observe a different error TSAN report ``` ================== WARNING: ThreadSanitizer: data race (pid=406138) Read of size 1 at 0x7fd554bfcf4a by thread T1 (mutexes: write...
This [commit](https://github.com/facebook/folly/commit/7aa9b2c) is the reason for the error. `fast_float` introduced these definitions only a couple months ago so installing a newer version of `fast_float` should work. Fedora 41 installs version...
I do not want to open a PR for this as it might require changes to assembly code which I am not very comfortable with Also tagging @dustanddreams for his...