官方淘宝店 易迪拓培训 旧站入口
首页 > 无线通信 > 通信技术学习讨论 > 最新intel parallel 2013和PGI FORTRAN12

最新intel parallel 2013和PGI FORTRAN12

12-30
编程软件和教程(有很多软件和教程)
1 Intel(R) Parallel Studio XE 2013 for Windows:
Includes Intel(R) C++ Composer XE 2013, Intel(R) Visual Fortran Composer XE 2013, Intel(R) VTune(TM) Amplifier XE 2013, Intel(R) Inspector XE 2013, Intel(R) Advisor XE 2013
2 intel fortran支持第三代最新的i7处理器,支持AVX指令。
PGI FORTRAN 好像支持OPEN ACC指令了,
在这个店买了2个,成功破解,准备试试 ,看看有什么新特性。
intel 2013
http://item.taobao.com/item.htm?spm=686.1000925.1000774.10.7UBiHU&id=17532823501
PGI http://item.taobao.com/item.htm?spm=686.1000925.1000774.20.5FmoA0&id=16301189843

中文教程(国内唯一一本中文intel fortran教材)
  
CUDA中文教程:GPU高性能运算之CUDA(张舒,褚艳利著 textbook)
    
更多并行程序教程:
  
1  高性能计算培训班材料(MPI.中国科学院计算机网络信息中心)
    
2 高性能计算之并行编程技术—MPI并行程序设计 (都志辉编著)
  
3 Parallel scientific computing in c++ and mpi(最好的并行书)
    
4 The C++ Standard Library
    
5 Theory and Problems of Programming with C++
    
6 Design Patterns Elements of Reusable Object-Oriented Softwar
    
7 C++沉思录
    
8 C++Primer Plus(第五版)中文版
    
9  C++游戏编程入门 Beginning C++ Game Programming (作者Michael)
    
10 C++STL中文版
    
11 Effcient C++ Programming Techniques
    
12 OpenGL编程指南(第四版)
    
13 Modern C++ Design. Generic Programming and Design Patterns A
    
14 Beyond the C++ Standard Library An Introduction to Boost
  

x86处理器里面的SIMD扩展,包括AVX在内,编译器支持都很差。也就是说compiler很难产生针对这些扩展指令集优化的代码。目前大多利用这些的软件都是手动优化的汇编

Top