Hari Hara Naveen S

Results 67 comments of 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 ![scale](https://user-images.githubusercontent.com/69986621/230747034-3ceef35d-6bd9-45e5-8cf1-1def97fc0e3d.png) seq : 0.2 ![add](https://user-images.githubusercontent.com/69986621/230747039-a260d7c4-97a8-4b6b-935e-2197beabd2d9.png)

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...