Thomas Green
Thomas Green
Started looking at what work was needed for this earlier this year - with it being the Quake 4 SDK as a baseline and Doom 3 code applied on top...
Having just tried again just to make sure it seems to work. As you can see from screenshot above I definitely got the error message. Very strange - maybe since...
Thanks. Also got a couple of other questions with tutorial - new issues? 1. `--privileged` in the docker command - is that really required? 2. When I run the test...
Was intrigued with this error - seems `strcpy` into itself is not guaranteed to be in any particular order, for this `memmove` might suffice. ```c memmove(level, level+1, strlen(level)) ```
Thanks for the comments - in reply: @yarikoptic - agree there are probably some edge cases but I think the positives outweight the negatives - will users of fail2ban find...
Hi - sorry for the radio silence had some rather big personal circumstances crop up so did not have time to push this forward. Happy to work on this now...
Thanks for the detailed discussion. I am a bit of a purist when it comes to OpenMP and like at least an option to have repeatable results when using multiple...
This is where knowing the code helps so the impact of this can be ignored. I will experiment more but if multiple threads are not repeating results then I feel...
Thanks. Just to update. Just did some timings with 2 threads and removed openmp from that section of code and I dont see a performance drop (might actually improve) since...
Thanks for taking time to look. Be good to see what impact removing OpenMP on the bigger models. Still need to be convinced that the data race provides an equally...