eesem 安装遇到的问题

1、在进入tools文件夹,安装后,还需要执行 install_atlasa.sh脚本,安装ATLAS,

因为Makefile文件中,只下载了它的3.8.*版本,而install_atlas.sh的脚本文件,需要下载3.10.*的版本。

遇到的两个问题:1)、直接下载,下载失败。

2)、脚本的前面注释说,要关闭cpu 的变频功能。  但是公司的服务器没有权限呀。。。!!

就安装一个开源的现成的eesen,要不要这么纠结!!


# probably -lclapack -lcblas -latalas -lf77blas, or something like that...
# let us know what worked.)


# note: to get this install process to work you have to make
# sure CPU throttling is disabled
.  To do this, on some systems
# you can edit
# /etc/sysconfig/cpuspeed
# to set GOVERNOR=performance
# On others you can do
#  sudo cpufreq-selector performance
# You may under some circumstances have to specify -b 32 to the configure
# script (e.g. if you are compiling Kaldi in 32-bit on a 64-bit CPU).


if [ ! -f atlas3.10.0.tar.bz2 ]; then
  echo "no zip"
  wget -T 10 -t 3 http://sourceforge.net/projects/math-atlas/files/Stable/3.10.0/atlas3.10.0.tar.bz2 || exit 1; # 如果下载不下来,将直接退出!!!!!!!!!
  echo "wget is over %%%%%%%%%%%%"
fi

Redhat 关闭 CPU throttling

最近安装测试 HPL 需要安装 ATLAS,而安装 ATLAS 需要关闭 CPU throttling(即CPU变频)。

在 Redhat 下关闭方法之一如下:


2、

srilm工具安装   install_sriml.sh 脚本运行失败,无法下载安装包。

网络上找了好久没找到。。


3、安装kaldi的时候,并没有这么麻烦,直接就把ATLAS安装成功了。。

看来只能在研究一下kaldi的安装脚本了 


猜你喜欢

转载自blog.csdn.net/qing101hua/article/details/79046160