I am working on a lock-free self-organizing list and I was looking for some benchmarks too which I could compare my results or some program with which i could test the performance of my algorithms.
The code is written in Java and i will need to run multiple scenarios :
Just to be clear my question is:
If anyone knows some benchmarks or performance measurement tools where I could compare my results?
You can try benchmarking against other lock-free list implementations in the benchmark suites such as
https://github.com/gramoli/synchrobench
https://github.com/LPD-EPFL/ASCYLIB
Among others