它使用pthread或其他線程API嗎?哪個線程庫在linux上使用gcc來實現OpenMP?
2
A
回答
5
0
一個OpenMP的運行時庫是巴爾德庫 其由OdinMP編譯靶向的 庫和編譯器完全支持的OpenMP 2.0 包括嵌套的並行性。 Balder圖書館有 模塊化設計,並有幾個子庫。一個 這樣子庫稱爲巴爾德線程的高效便攜式線程庫
+0
GCC使用它嗎? – osgx
1
這取決於你編譯什麼GCC與標準Linux實現來與POSIX線程的OpenMP,類型gcc -v
在終端
這裏是輸出從我的筆記本電腦的興趣大膽
[[email protected] ~]$ gcc -v
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.6.3/lto-wrapper
Target: i686-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux
**Thread model: posix**
這裏的一部分是從GCC網站上所有可用的選項
--enable-threads=lib
Specify that lib is the thread support library. This affects the Objective-C compiler and runtime library, and exception handling for other languages like C++ and Java. The possibilities for lib are:
aix
AIX thread support.
dce
DCE thread support.
lynx
LynxOS thread support.
mipssde
MIPS SDE thread support.
no
This is an alias for `single'.
posix
Generic POSIX/Unix98 thread support.
rtems
RTEMS thread support.
single
Disable thread support, should work for all platforms.
tpf
TPF thread support.
vxworks
VxWorks thread support.
win32
Microsoft Win32 API thread support.
+4
GCC總是使用Pthreads作爲libgomp(OpenMP運行時庫),它不依賴於GCC其餘部分使用的線程模型。 –
相關問題
- 1. gcc openmp線程重用
- 2. 除了gcc,我可以在Linux中使用哪個程序進行拆線?
- 3. Linux上的gcc 4.8.2 - 使用線程崩潰的簡單程序
- 4. 我應該在Linux上使用哪個線程庫用於多線程C程序?
- 5. Ubuntu 10.10上正在使用哪個gcc
- 6. 使用OpenMP和Xeon Phi使用k1om-mpss-linux-gcc編譯器
- 7. 在PreviewFrame上使用Zxing庫來實現增強現實
- 8. 使用gcc的Centos openmp 4.1.2
- 9. 使用OpenMP在兩個內核上設置線程關聯
- 10. gcc如何知道使用哪個庫?
- 11. 使用openmp創建多個線程
- 12. Android數據庫 - 使用哪個線程
- 13. 哪個std :: async實現使用線程池?
- 14. 當使用linux終端時gcc來自哪裏?
- 15. 如何使GNU GCC優化OpenMP線程類似
- 16. 線程在OpenMP的
- 17. MPI_Bcast使用線程(OpenMP的)在MPI
- 18. 多線程在C++中使用openmp
- 19. 在Mac,Windows和Linux上使用CFFI和線程支持的Common Lisp實現?
- 20. 如何實現線程庫?
- 21. 哪個JAXB實現使用?
- 22. 使用哪個int實現?
- 23. 使用C++實現線程
- 24. OpenMP - 在塊上執行線程
- 25. 用OpenMP實現的ThreadPool
- 26. 在使用TPL的數據庫調用中實現多線程
- 27. 哪個庫在django中實現Oauth?
- 28. gui在linux下使用gcc
- 29. OpenMP實現減少
- 30. 使用gcc和Matlab在mac上編譯openmp
執行依賴,標準實際上沒有說。很可能它會使用「原生」線程。例如在Windows上它將使用Win32線程。 – cdarke
@cdarke,問題要求在Linux上的gcc。 (不是說你錯了,只是脫離主題。) –