自学内容网 自学内容网

TFHE库,fftw和googletest库安装

点个关注吧!本文主要关注于TFHE的安装与常见的问题

1.TFHE的git链接:

https://github.com/tfhe/tfhe
git clone --recurse-submodules --branch=master https://github.com/tfhe/tfhe.git

2.安装

mkdir build
cd build
cmake ../src -DENABLE_TESTS=on -DENABLE_FFTW=on -DCMAKE_BUILD_TYPE=debug
make

3.主要会出现两个错误:没有fftw和googletest
fftw下载链接

http://www.fftw.org/

安装

cd ./fftw-3.3.10
./configure --enable-shared
make
sudo make install
sudo ldconfig

googletest安装

git clone https://github.com/google/googletest.git
cd googletest
cmake -Dgtest_build_tests=on -DCMAKE_INSTALL_PREFIX=. ..
make
make install

完成后

cd tfhe-master (进入tfhe文件夹)
mkdir build
cd build
cmake ../src -DENABLE_TESTS=on -DENABLE_FFTW=on -DCMAKE_BUILD_TYPE=debug
make (权限不够的话要sudo)
sudo make install

TFHE可能存在以下的报错,关注后续文章。

C++ versions less than C++14 are not supported.


原文地址:https://blog.csdn.net/qq_41359358/article/details/140565666

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!