Recently, I installed this software and I wanted to check whether I had a data race or some other bug in my program with the thread checker. When I ran it from the graphical user interphace, set up the new project, compiled the c++ code with icpc and ran it through the thread checker, it said it didn't detect any problems and also that it did not find any other threads. It was running the program serially so of course it couldn't find any data races. It also seemed to not be loading the omp library (?).
Anyways, the error i got was this:
I tried at the same time opening this software from the command line and when tried it again, it ran it in parallel and found a few data races and an exception. Someone suggested that maybe it was because it was forking processes and from the command line it could inherit/see the missing library and loaded it, but it couldn't do the same in the graphical user interphace. However, when they tried to find the library, it was at the root so it should have been seen even from the GUI. That may not be the best description but hopefully someone might have some ideas based on the nature of the problem and the error message.


