Rust – No performance gain with threadpool
I am attempting to do sequential and parallel dfs using stl multithreading. I have created a threadpool and I pass the tasks (processing a node) into that threadpool. Not only is it slower than the sequential, its execution time doesn’t change based on the threadcount passed in on construction. What am I doing wrong?