gpt4 book ai didi

c++ - 使用 GCC 编译 PARDISO 线性求解器测试用例

转载 作者:太空宇宙 更新时间:2023-11-04 01:43:10 32 4
gpt4 key购买 nike

我正在尝试使用 PARDISO 编译线性系统求解器.测试用例 (pardiso_sym.c) 也是从上面的同一网站下载的。

我在目录中有以下文件:

[gv@emerald my-pardiso]$ ls -lh
total 1.3M
-rw-r--r-- 1 gv hgc0746 1.3M Aug 7 11:59 libpardiso_GNU_IA64.so
-rw-r--r-- 1 gv hgc0746 7.2K Nov 13 2007 pardiso_sym.c

然后我尝试用下面的命令编译它:

[gv@emerald my-pardiso]$ gcc pardiso_sym.c -o pardiso_sym -L . -llibpardiso_GNU_IA64.so -L/home/gv/.boost/include/boost-1_38 -llapack

但它给出了这个错误:

/usr/local/lib/gcc/x86_64-unknown-linux-gnu/4.3.2/../../../../x86_64-unknown-linux-gnu/bin/ld:
cannot find -llibpardiso_GNU_IA64.so
collect2: ld returned 1 exit status

我的编译方式有什么问题吗?

这是我系统的附加信息:

[gv@emerald my-pardiso]$ uname -a
Linux gw05 2.6.18-92.1.13.el5 #1 SMP Wed Sep 24 19:32:05 EDT 2008
x86_64 x86_64 x86_64 GNU/Linux

[gv@emerald my-pardiso]$ gcc --version
gcc (GCC) 4.3.2

更新:

库是根据 Dave Gamble 的建议识别的。但现在它给出了不同的错误:

$ gcc pardiso_sym.c -o pardiso_sym -L . -lpardiso_GNU_IA64 -L/home/gv/.boost/include/boost-1_38 -llapack
./libpardiso_GNU_IA64.so: undefined reference to `s_stop'
./libpardiso_GNU_IA64.so: undefined reference to `s_wsfe'
./libpardiso_GNU_IA64.so: undefined reference to `e_wsfe'
./libpardiso_GNU_IA64.so: undefined reference to `z_abs'
./libpardiso_GNU_IA64.so: undefined reference to `s_cat'
./libpardiso_GNU_IA64.so: undefined reference to `s_copy'
./libpardiso_GNU_IA64.so: undefined reference to `do_fio'

最佳答案

编辑:我阅读了 pardiso 手册。这是修复:

gcc pardiso_sym.c -o pardiso_sym -L . -lpardiso_GNU_IA64 -L/home/gv/.boost/include/boost-1_38 -llapack

这里我删除了 -lpardiso_GNU_IA64 开头的“lib”和结尾的“.so”

关于c++ - 使用 GCC 编译 PARDISO 线性求解器测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1242742/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com