您的位置:首页 > 房产 > 建筑 > TFHE库,fftw和googletest库安装

TFHE库,fftw和googletest库安装

2024/12/22 1:23:35 来源:https://blog.csdn.net/qq_41359358/article/details/140565666  浏览:    关键词: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.

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com