安装 GMP、NTL、CTMalloc ,编译 OpenFHE

参考文献:

  1. [ABB+22] Al Badawi A, Bates J, Bergamaschi F, et al. Openfhe: Open-source fully homomorphic encryption library[C]//Proceedings of the 10th Workshop on Encrypted Computing & Applied Homomorphic Cryptography. 2022: 53-63.
  2. openfheorg/openfhe-development
  3. Welcome to OpenFHE’s documentation!
  4. 在Ubuntu上安装NTL库以及编译测试
  5. Ubuntu上安装NTL库
  6. 内存优化-如何使用tcmalloc来提升内存性能?
  7. 在Ubuntu上安装Bazel
  8. Google Performance Tools安装以及使用
  9. Git安装教程以及连接Github
  10. 使用Git出现“git Failed to connect to 127.0.0.1 port xxxx: Connection refused”的解决方案
  11. GMP:代码,文档
  12. gf2x:代码,文档
  13. NTL:代码,文档
  14. ctmalloc:代码,文档
  15. bazel:代码,文档

文章目录

  • 安装 GMP
  • 安装 gf2x
  • 安装 NTL
  • 安装 Bazel
  • 安装 ctmalloc
  • 编译 OpenFHE
  • FHE 样例

我使用的是 WSL 子系统,

  • 操作系统版本:Ubuntu 22.04.2 LTS,位数 x86_64
  • GMP 版本:6.2.1
  • NTL 版本:11.5.1

安装 GMP

下载 GMP 6.2.1 版本(必须和 NTL 11.5.1 匹配,如果冲突报错了,在你安装的源码目录 gmp-6.3.0 下执行 sudo make uninstall 卸载),解压并进入 gmp-6.2.1 文件夹,

./configure --prefix=$HOME/gmpmakemake checksudo make install

如果 prefix 不指定安装的目录,库文件 lib 会产生在 /usr/local/lib,头文件在 /usr/local/include。我没有指定,让它默认安装到 /usr/local 内。

安装结果:

----------------------------------------------------------------------
Libraries have been installed in:/usr/local/libIf you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:- add LIBDIR to the 'LD_LIBRARY_PATH' environment variableduring execution- add LIBDIR to the 'LD_RUN_PATH' environment variableduring linking- use the '-Wl,-rpath -Wl,LIBDIR' linker flag- have your system administrator add LIBDIR to '/etc/ld.so.conf'See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------/usr/bin/mkdir -p '/usr/local/include'/usr/bin/install -c -m 644 gmp.h '/usr/local/include'/usr/bin/mkdir -p '/usr/local/lib/pkgconfig'/usr/bin/install -c -m 644 gmp.pc '/usr/local/lib/pkgconfig'
make  install-data-hook
make[4]: Entering directory '/mnt/e/ThirdPartyLibrary/GMP/gmp-6.2.1'

安装 gf2x

如果源码文件夹下没有 ./configure,但有 configure.amconfigure.in,我们用 autoconf 命令来生成。

  1. 我们先安装 autoconf 工具,

    sudo apt-get install autoconf
    
  2. 下载 gf2x,我们下载 .tar.gz 版本的压缩文件,并在 Linux 下解压(在 Windows 下解压 .zip 做编译时会报错,因为 Linux 下的软链接被翻译成了形如 ../../crypto/opensslconf.h 的一行代码形式),

    gunzip gf2x-master.tar.gztar xf gf2x-master.tarcd gf2x-master
    
  3. 我们先执行如下指令(直接执行 autoreconf --install./configure 会有找不到 Makefile.in 文件的报错),

    aclocallibtoolize --forceautomake --add-missingautoconf
    
  4. 然后生成 ./configure 文件,

    autoreconf --install
    
  5. 现在可以安装 gf2x 了,

    ./configuremakemake checksudo make install
    

安装结果:

Libraries have been installed in:/home/wqf/sw/libIf you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:- add LIBDIR to the 'LD_LIBRARY_PATH' environment variableduring execution- add LIBDIR to the 'LD_RUN_PATH' environment variableduring linking- use the '-Wl,-rpath -Wl,LIBDIR' linker flag- have your system administrator add LIBDIR to '/etc/ld.so.conf'See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.

安装 NTL

安装好 GMP 之后再编译 NTL,计算效率快得多,

For this to work, GMP must already be installed (most Unix distributions already come with GMP installed, but see this page for more details). If you really do not want to use GMP, you can pass the option NTL_GMP_LIP=off to configure; however, NTL will run significantly faster with GMP, so this is strongly discouraged.

安装好 gf2x 之后再编译 NTL,使得 GF(2) 的效率快得多,

If you want very high-performance for polynomial arithmetic over GF(2), you may want to consider using the gf2x library. To do this, gf2x must already be installed. In addition, you should invoke configure with the option NTL_GF2X_LIB=on.

  1. 下载最新版本的 NTL,我们下载 ntl-11.5.1.tar.gz 压缩文件,在 Linux 下解压

    gunzip ntl-11.5.1.tar.gztar xf ntl-11.5.1.tarcd ntl-11.5.1/src/
    
  2. 默认配置了 GMP,我们额外配置 gf2x

    ./configure PREFIX=/usr/local NTL_GF2X_LIB=on GF2X_PREFIX=/usr/local
    
  3. 编译

    makemake checksudo make install
    
  4. 如果执行 make check 时找不到 .so 的软连接,删除后使用绝对路径重新配置下,

    sudo rm libgf2x.so.4sudo rm libgf2x.sosudo ln -s /usr/local/lib/libgf2x.so.4.0.0 /usr/local/lib/libgf2x.so.4sudo ln -s /usr/local/lib/libgf2x.so.4.0.0 /usr/local/lib/libgf2x.sosudo ldconfig
    

安装结果:

mkdir -p -m 755 /usr/local/include
rm -rf /usr/local/include/NTL
mkdir -m 755 /usr/local/include/NTL
cp -p ../include/NTL/*.h /usr/local/include/NTL
chmod -R a+r /usr/local/include/NTL
mkdir -p -m 755 /usr/local/share/doc
rm -rf /usr/local/share/doc/NTL
mkdir -m 755 /usr/local/share/doc/NTL
cp -p ../doc/*.txt /usr/local/share/doc/NTL
cp -p ../doc/*.html /usr/local/share/doc/NTL
cp -p ../doc/*.gif /usr/local/share/doc/NTL
chmod -R a+r /usr/local/share/doc/NTL
mkdir -p -m 755 /usr/local/lib
cp -p ntl.a /usr/local/lib/libntl.a #LSTAT
chmod a+r /usr/local/lib/libntl.a #LSTAT

安装 Bazel

Bazel 是 Google 开源的编译构建工具,以 Monolithic Repository 为理念。与 makefile & CMake 不同,Bazel 另起炉灶,采用 client/server 运行模式,为云编译而生。Bazel 工具将编译过程分三个阶段:Load Phase/Analysis Phase/Execution phase。研发人员实现 workspace/build/.bzl 三种文件,Bazel 执行这些文件生成 action graph,执行 action 来构建项目。

下载 bazel,我们下载 installer-linux-x86_64.sh 二进制安装程序,

chmod +x bazel-6.4.0-installer-linux-x86_64.shsudo cp ./bazel-6.4.0-installer-linux-x86_64.sh /usr/local/bin/cd /usr/local/bin/./bazel-6.4.0-installer-linux-x86_64.sh

安装结果:

Bazel is now installed!Make sure you have "/usr/local/bin" in your path.For bash completion, add the following line to your ~/.bashrc:source /usr/local/lib/bazel/bin/bazel-complete.bashFor fish shell completion, link this file into your
/root/.config/fish/completions/ directory:ln -s /usr/local/lib/bazel/bin/bazel.fish /root/.config/fish/completions/bazel.fishSee http://bazel.build/docs/getting-started.html to start a new project!

使用 Bazel 编译 ctmalloc 源码时,它总是去链接 https://github.com/protocolbuffers/protobuf/archive/13d559beb6967033a467a7517c35d8ad970f8afb.zip 下载 com_google_protobuf,但是报错 Connection refused。明明用浏览器可以打开这个网址啊!无语。。。

安装 ctmalloc

ctmalloc 是一个高效管理内存的工具包,需要使用 bazel 来编译源码,但它连不上 github,编译不了!!!我们通过安装 gperftools 来实现 ctmalloc 的安装。

TCMalloc (Thread-Caching Malloc) 与标准 glibc 库的 malloc 实现一样的功能,但是 TCMalloc 在效率和速度效率都比标准 malloc 高很多。TCMalloc 是 google-perftools 工具中的一个(四个工具分别是:TCMalloc、heap-checker、heap-profiler 和 cpu-profiler)。

  1. 下载 libunwind(追踪函数调用栈),源码安装

    autoreconf --force -v --install./configuremakesudo make install
    
  2. 下载 gperftools(CPU 性能分析器),源码安装

    autoreconf --force -v --install./configuremakesudo make install
    
  3. 最后把 ctmalloc 加载到 Linux 系统中,

    suecho '/usr/local/lib' > /etc/ld.so.conf.d/local.conf/sbin/ldconfigexit
    

编译 OpenFHE

  1. 在 https://github.com/openfheorg/openfhe-development 下载 OpenFHE 的源代码,解压得到 openfhe-development-main

  2. 递归下载依赖的第三方代码(本来是空文件夹),

    cd ./third-partygit initgit submodule update --init --recursive
    
  3. 我们配置 ./CMakeLists 文件,打开 WITH_NTL, WITH_TCM 等优化选项(如果你没有安装它们,就不要打开),构造出 Makefile 文件,

    mkdir buildcd buildcmake .. BUILD_EXTRAS=ON WITH_NTL=ON WITH_TCM=ON
    
  4. OpenFHE 的源码文件很大,我们启用多线程 ,

    make -j 16
    
  5. 根据需求可以安装到系统中(在 ./build 下执行 sudo make uninstall 即可卸载),

    make install
    

现在我们根据 ./unitest 中的三个测试代码,做正确性测试,

make testall

运行了好长时间后(主要是 pke1489 cases 很慢),得到的测试结果,

-- demoData folder already exists
[  0%] Built target third-party
[ 21%] Built target coreobj
[ 21%] Built target OPENFHEcore
[ 26%] Built target binfheobj
[ 28%] Built target OPENFHEbinfhe
[ 34%] Built target binfhe_tests
[ 48%] Built target core_tests
[ 80%] Built target pkeobj
[ 80%] Built target OPENFHEpke
[100%] Built target pke_tests
core:
Testing Backends: 4 Native
****** OpenFHE Version 1.1.1
****** Date 2023-10-29T13:55:17
****** End 159 cases 159 passed 0 failed
pke:
Testing Backends: 4 Native
****** OpenFHE Version 1.1.1
****** Date 2023-10-29T13:55:38
****** End 1489 cases 1489 passed 0 failed
binfhe:
Testing Backends: 4 Native
****** OpenFHE Version 1.1.1
****** Date 2023-10-29T14:24:47
****** End 84 cases 84 passed 0 failed
[100%] Built target testall

FHE 样例

测试 BFV 方案,执行 bin/examples/pke/simple-integers

Plaintext #1: ( 1 2 3 4 5 6 7 8 9 10 11 12 ... )
Plaintext #2: ( 3 2 1 4 5 6 7 8 9 10 11 12 ... )
Plaintext #3: ( 1 2 5 2 5 6 7 8 9 10 11 12 ... )Results of homomorphic computations
#1 + #2 + #3: ( 5 6 9 10 15 18 21 24 27 30 33 36 ... )
#1 * #2 * #3: ( 3 8 15 32 125 216 343 512 729 1000 1331 1728 ... )
Left rotation of #1 by 1: ( 2 3 4 5 6 7 8 9 10 11 12 ... )
Left rotation of #1 by 2: ( 3 4 5 6 7 8 9 10 11 12 ... )
Right rotation of #1 by 1: ( 0 1 2 3 4 5 6 7 8 9 10 11 ... )
Right rotation of #1 by 2: ( 0 0 1 2 3 4 5 6 7 8 9 10 ... )

测试 CKKS 方案,执行 bin/examples/pke/simple-real-numbers

CKKS scheme is using ring dimension 16384Input x1: (0.25, 0.5, 0.75, 1, 2, 3, 4, 5,  ... ); Estimated precision: 50 bitsInput x2: (5, 4, 3, 2, 1, 0.75, 0.5, 0.25,  ... ); Estimated precision: 50 bitsResults of homomorphic computations:
x1 = (0.25, 0.5, 0.75, 1, 2, 3, 4, 5,  ... ); Estimated precision: 43 bits
Estimated precision in bits: 43
x1 + x2 = (5.25, 4.5, 3.75, 3, 3, 3.75, 4.5, 5.25,  ... ); Estimated precision: 43 bits
Estimated precision in bits: 43
x1 - x2 = (-4.75, -3.5, -2.25, -1, 1, 2.25, 3.5, 4.75,  ... ); Estimated precision: 43 bits4 * x1 = (1, 2, 3, 4, 8, 12, 16, 20,  ... ); Estimated precision: 41 bitsx1 * x2 = (1.25, 2, 2.25, 2, 2, 2.25, 2, 1.25,  ... ); Estimated precision: 42 bitsIn rotations, very small outputs (~10^-10 here) correspond to 0's:
x1 rotate by 1 = (0.5, 0.75, 1, 2, 3, 4, 5, 0.25,  ... ); Estimated precision: 43 bitsx1 rotate by -2 = (4, 5, 0.25, 0.5, 0.75, 1, 2, 3,  ... ); Estimated precision: 43 bits

测试 TFHE 方案,执行 bin/examples/binfhe/boolean-truth-tables

Generate cryptocontext
Finished generating cryptocontext
Generating the bootstrapping keys...
Completed the key generation.1 NAND 1 = 0
1 NAND 0 = 1
0 NAND 0 = 1
0 NAND 1 = 11 AND 1 = 1
1 AND 0 = 0
0 AND 0 = 0
0 AND 1 = 01 OR 1 = 1
1 OR 0 = 1
0 OR 0 = 0
0 OR 1 = 11 NOR 1 = 0
1 NOR 0 = 0
0 NOR 0 = 1
0 NOR 1 = 01 XOR 1 = 0
1 XOR 0 = 1
0 XOR 0 = 0
0 XOR 1 = 11 XNOR 1 = 1
1 XNOR 0 = 0
0 XNOR 0 = 1
0 XNOR 1 = 01 XOR_FAST 1 = 0
1 XOR_FAST 0 = 1
0 XOR_FAST 0 = 0
0 XOR_FAST 1 = 11 XNOR_FAST 1 = 1
1 XNOR_FAST 0 = 0
0 XNOR_FAST 0 = 1
0 XNOR_FAST 1 = 0

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/122879.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Spring】IOC容器与Bean的常用属性配置

文章目录 1.前言2.IOC容器2.1 BeanFactory 容器2.2 ApplicationContext 容器 3.Bean的常用属性配置4. 总结 1.前言 在之前的文章-IOC的快速入门中讲过Bean这个概念. 本来就来介绍容器与Bean的常用属性配置 在Spring框架中,Bean指的是被Spring加载生成出来的对象。 …

12、SpringCloud -- redis库存和redis预库存保持一致、优化后的压测效果

目录 redis库存和redis预库存保持一致问题的产生需求:代码:测试:优化后的压测效果之前的测试数据优化后的测试数据redis库存和redis预库存保持一致 redis库存是指初始化是从数据库中获取最新的秒杀商品列表数据存到redis中 redis的预库存是指每个秒杀商品每次成功秒杀之后…

永恒之蓝漏洞 ms17_010 详解

文章目录 永恒之蓝 ms 17_0101.漏洞介绍1.1 影响版本1.2 漏洞原理 2.信息收集2.1 主机扫描2.2 端口扫描 3. 漏洞探测4. 漏洞利用5.后渗透阶段5.1创建新的管理员账户5.2开启远程桌面5.3蓝屏攻击 永恒之蓝 ms 17_010 1.漏洞介绍 永恒之蓝(ms17-010)爆发于…

安装虚拟机(VMware)保姆级教程及配置虚拟网络编辑器和安装WindowsServer以及宿主机访问虚拟机和配置服务器环境

目录 一、操作系统 1.1.什么是操作系统 1.2.常见操作系统 1.3.个人版本和服务器版本的区别 1.4.Linux的各个版本 二、VMware Wworkstation Pro虚拟机的安装 1.下载与安装 注意:VMWare虚拟网卡 2.配置虚拟网络编辑器 三、安装配置 WindowsServer 1.创建虚拟…

自动化项目实战 [个人博客系统]

自动化博客项目 用户注册登录验证效验个人博客列表页博客数量不为 0 博客系统主页写博客 我的博客列表页效验 刚发布的博客的标题和时间查看 文章详情页删除文章效验第一篇博客 不是 "自动化测试" 注销退出到登录页面,用户名密码为空 用户注册 Order(1)Parameterized…

QT5.15在Ubuntu22.04上编译流程

在我们日常遇到的很多第三方软件中,有部分软件针对开发人员,并不提供预编译成果物,而是需要开发人员自行编译,此类问题有时候不是问题(编译步骤的doc详细且清晰时),但有时候又很棘手&#xff08…

数据结构上机实验——二叉树的实现、二叉树遍历、求二叉树的深度/节点数目/叶节点数目、计算二叉树度为1或2的节点数、判断二叉树是否相似

文章目录 数据结构上机实验1.要求2.二叉树的实现2.1创建一颗二叉树2.2对这棵二叉树进行遍历2.3求二叉树的深度/节点数目/叶节点数目2.4计算二叉树中度为 1 或 2 的结点数2.5判断2棵二叉树是否相似,若相似返回1,否则返回0 3.全部源码测试:Bina…

问题 S: 一只小蜜蜂...(初始化dp)

1.注意点: 该题递推公式为斐波那契数列,而n达到50,是非常大的数 , 故应用循环代替递归,同时记录数据 同时用long long数组储存 ​​ 2.注意点:初始化起点,切忌重新递归找数 可以直接初始化所…

前端重新部署如何通知用户更新

标题解决方案 常用的webSocket解决方案 webSocket; 大致逻辑思考应该是前端在部署好后向服务器发送一个状态变更通知;服务器接收后主动向前端push;前端通过心跳检测,接收到相关更新时弹出提示,让用户确认更新; 缺点&a…

什么是Props?

Props是Vue框架中的一个特性,用于父组件向子组件传递数据。它允许父组件将数据传递给子组件,并在子组件中进行使用和显示。 Props的作用是实现父子组件之间的数据通信。通过Props,父组件可以向子组件传递数据,使得子组件能够接收…

设计一个高效算法,将顺序表L的所有元素逆置,要求算法的空间复杂度为O(1)

初始化及打印函数 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define MaxSize 10//定义最大长度 int InitArr[10] { 1,2,3,4,5,6,7,8,9,10 };typedef struct {int data[MaxSize];//用静态的数据存放数据元素int length;//顺序表当前长度 }Sqlist;//顺序表的类…

java利用StringTokenizer分割字符串

介绍 利用java.util.StringTokenizer的方法&#xff0c;可以将一个字符串拆分为一系列的标记&#xff08;token&#xff09;。StringTokenizer是为了兼容性原因而保留的遗留类。在新的代码中&#xff0c;不建议使用StringTokenizer&#xff0c;而建议使用String类的split方法来…

Ubuntu自建git服务器

Ubuntu 安装 gitlab-ce sudo apt-get update sudo apt-get install gitlab-ce 安装成功 sudo apt-get install gitlab-ce 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 下列【新】软件包将被安装&#xff1a;gitlab-ce 升…

假如我有一台服务器

如果我有一台服务器&#xff0c;我会认真考虑如何充分利用它的潜力来实现自己的创意项目或支持社区。服务器是一个强大的工具&#xff0c;可以用于各种用途&#xff0c;下面我将分享一些潜在的想法&#xff1a; 1. 创意项目的托管&#xff1a; 首先&#xff0c;我会考虑托管自…

私有云:【5】安装VCenter Server

私有云&#xff1a;【5】安装VCenter Server 1、在本地物理机上安装VCenter Server到Esxi1.1、开始安装第一阶段1.2、开始安装第二阶段 2、配置VCenter2.1、分配许可2.2、添加主机2.3、创建数据存储NFS 1、在本地物理机上安装VCenter Server到Esxi 安装前在AD域服务器配置好VC…

HDU 1062:字符串反转

【题目来源】http://acm.hdu.edu.cn/showproblem.php?pid1062【题目描述】 Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them.【输入格式】 The input cont…

MAYA教程之建模基础命令介绍

基础命令 视图相关操作 旋转视图 : ALT 鼠标左键平移视图 : ALT 鼠标中键缩放视图 : 滚动鼠标滚轮 或者 ALT 鼠标右键切换视图 : 空格键回到模型 : F 视图状态 选择状态 : Q移动状态 : W旋转状态 : E缩放状态 : R 视图显示 正常显示 : 1正常圆滑同时显示 : 2圆滑显示 …

MySQL - 覆盖索引、索引下推

覆盖索引&#xff08;Covering Index&#xff09; &#xff1a; 覆盖索引是一种索引&#xff0c;包含了查询中需要的所有列&#xff0c;而不仅仅是索引列本身。这种索引可以通过减少磁盘I/O和提高查询性能来优化数据库查询。当一个查询可以完全通过覆盖索引满足时&#xff0c;数…

java 使用策略模式减少if

使用多态&#xff1a;通过使用面向对象的多态特性&#xff0c;可以将不同的逻辑封装到不同的类中&#xff0c;避免大量的 if 语句。使用继承和接口来定义通用的方法&#xff0c;并让具体的实现类实现这些方法。 使用设计模式&#xff1a;使用设计模式可以更好地组织和管理代码逻…

设计模式:责任链模式(C#、JAVA、JavaScript、C++、Python、Go、PHP)

上一篇《享元模式》 下一篇《解释器模式》 简介&#xff1a; 责任链模式&#xff0c;它是一种行为型设计模式&#xff0c;它将许多对象连接起来形成一条链&#xff0c;每个对象处理不同的请求&#xff0c…