I know this is an issue that has been asked about a few times, but I wasn’t able to find a conclusive answer to whether the Theano warning below is something to be concerned about.
WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.
I work on a Linux server and locally on a Mac and use a conda virtual environment in both, but only get this warning on the Linux server. Sometimes the Linux server is slower, but this could also be due to slower hardware than on my Mac. I am trying to fit a hierarchical model with many parameters and a lot of data on the Linux server, so I want to try to have it running as efficiently as possible.
My main questions are
1. Should I be concerned about this warning? 2. If I can address it, would PyMC3 NUTS sample faster?
Strange! Usually this is a windows problem. The only thing I can think of is that there is an environment variable somewhere that isn’t set quite right. @almostmeenal@ricardoV94 any clues?
The server has gcc and openblas installed already, too, but they are different versions. Do you think there could be something strange happening because of those? Are there any diagnostics I can run to help figure this out?
Removing the other gcc from my PATH caused the warning to go away. I will update this post with whether or not that caused a substantial difference to the rate of sampling from the larger model.
Thank you @cluhmann for your help and patience. It is greatly appreciated!
I just posted the results from my experiment with running PyMC3 MCMC with and without the Theano BLAS warning. I didn’t find much of a difference. I’m curious to know what people with a better understanding of PyMC3 and Theano expected and if this is surprising or not.
@twiecki I saw your comment on Twitter, and trying to update to v4 is on my to-do list. If I can get it working on the cluster, then I’ll update this post with a comparison.