--
You received this message because you are subscribed to a topic in the Google Groups "gensim" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gensim/WcWn6kabLQ0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gensim+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Dear all,Would there be any updates on this?I updated my gensim version:>>> import gensim>>> gensim.__version__'0.10.2'>>> print gensim.models.word2vec.FAST_VERSION1but I am still not seeing multiple processes when I am training models.
Tom
Tom.
ubuntu@ubuntu14:~$ source activate gensim_cenv # conda environment
discarding /home/ubuntu/miniconda/bin from PATH
prepending /home/ubuntu/miniconda/envs/gensim_cenv/bin to PATH
(gensim_cenv)ubuntu@ubuntu14:~$ python --version
Python 2.7.10 :: Continuum Analytics, Inc.
(gensim_cenv)ubuntu@ubuntu14:~$ conda list | egrep "numpy|scipy"
numpy 1.9.2 py27_0
scipy 0.15.1 np19py27_0
(gensim_cenv)ubuntu@ubuntu14:~/enwiki$ python -c "import numpy as np; np.__config__.show()"
lapack_opt_info:
libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
library_dirs = ['/home/ubuntu/miniconda/envs/gensim_cenv/lib']
define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
language = f77
openblas_lapack_info:
NOT AVAILABLE
atlas_3_10_blas_threads_info:
NOT AVAILABLE
atlas_threads_info:
NOT AVAILABLE
atlas_3_10_threads_info:
NOT AVAILABLE
atlas_blas_info:
libraries = ['f77blas', 'cblas', 'atlas']
library_dirs = ['/home/ubuntu/miniconda/envs/gensim_cenv/lib']
define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
language = c
atlas_3_10_blas_info:
NOT AVAILABLE
atlas_blas_threads_info:
NOT AVAILABLE
openblas_info:
NOT AVAILABLE
blas_mkl_info:
NOT AVAILABLE
blas_opt_info:
libraries = ['f77blas', 'cblas', 'atlas']
library_dirs = ['/home/ubuntu/miniconda/envs/gensim_cenv/lib']
define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
language = c
atlas_info:
libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
library_dirs = ['/home/ubuntu/miniconda/envs/gensim_cenv/lib']
define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
language = f77
atlas_3_10_info:
NOT AVAILABLE
lapack_mkl_info:
NOT AVAILABLE
mkl_info:
NOT AVAILABLE
(gensim_cenv)ubuntu@ubuntu14:~$ sudo update-alternatives --display libblas.so
libblas.so - auto mode
link currently points to /usr/lib/atlas-base/atlas/libblas.so
/usr/lib/atlas-base/atlas/libblas.so - priority 35
slave libblas.a: /usr/lib/atlas-base/atlas/libblas.a
/usr/lib/libblas/libblas.so - priority 10
slave libblas.a: /usr/lib/libblas/libblas.a
Current 'best' version is '/usr/lib/atlas-base/atlas/libblas.so'.
(gensim_cenv)ubuntu@ubuntu14:~$ python -c "import gensim; print(gensim.models.doc2vec.FAST_VERSION)"
1
(gensim_cenv)ubuntu@ubuntu14:~$ cat /proc/version
Linux version 3.16.0-38-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015
==============
- Gordon
If not, installing your distribution's 'python-dev' (or possibly 'python-devel') package might bring in the necessary tools to attempt a re-install.
The numpy version is certainly adequate, but the extra info from "np.__config__.show()" could also confirm that a BLAS library is active.
- Gordon