guodongxiaren / Blog

【编程往事】 — 果冻虾仁 的网络博客
https://github.com/guodongxiaren/Blog/issues
42 stars 12 forks source link

TBB:quick start #33

Open guodongxiaren opened 4 years ago

guodongxiaren commented 4 years ago

TBB

Intel 开源的C++并行计算库:Threading Building Blocks

同类产品:

guodongxiaren commented 4 years ago

下载

https://github.com/oneapi-src/oneTBB/releases 去下载release包。git克隆总是在65%的时候卡死。

当前最新版本为tbb_2020。 跨平台的。Mac也可以用。

编译

解压后cd进去。有个Makefile直接make。

make -j 8

在build目录下会出现一个编译后的目录,比如:

macos_intel64_clang_cc10.0.0_os10.14_release

linux_intel64_gcc_cc4.8.5_libc2.17_kernel3.10.0_release

以上会编译出tbb的库。还可以通过这个Makefile编译出其他东西:

guodongxiaren commented 4 years ago

运行测试用例

在build目录中,有个机器名命名的目录。里面是编译好的so和bin。 比如:

linux_intel64_gcc_cc4.8.5_libc2.17_kernel3.10.0_release

虽然bin被命名成了.exe的形式。但是并一定是Windows系统的可执行文件!Linux和Mac一样可以执行。

直接执行会报错:

loading shared libraries: libtbbmalloc.so.2: cannot open shared object file: No such file or directory

需要添加一个环境变量:

export LD_LIBRARY_PATH=/home/xxx/source/tbb/build/linux_intel64_gcc_cc4.8.5_libc2.17_kernel3.10.0_release