摘要: There parameters need to be obained: no. of physical CPU; no. of cores on each CPU; no. of all threads. In my case, the CPU name: Intel(R) Xeon(R) CPU 阅读全文
posted @ 2018-01-04 15:24 alliance 阅读(325) 评论(0) 推荐(0) 编辑
摘要: Operation system: CentOS 7.3 Torque PBS: torque-6.1.1.1.tar hostname: rfmlab user name: cfd01 1. Installation $ tar -zxvf torque-6.1.1.1.tar $ yum ins 阅读全文
posted @ 2017-12-15 14:03 alliance 阅读(3497) 评论(0) 推荐(1) 编辑
摘要: GPU: NVIDIA Tesla K40C Enter the 'root' mode: $ su - 1. Pre-installation 1.1 Verify you have a CUDA-capable GPU $ lspci | grep -i nvidia 1.2 Verify yo 阅读全文
posted @ 2017-11-27 19:17 alliance 阅读(5577) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://linux.chinaitlab.com/administer/820910.html linux /etc/profile文件的改变会涉及到系统的环境,也就是有关Linux环境变量的东西,学习Linux要了解Linux profile文件的相关原理,这里对则以文件进行具体分 阅读全文
posted @ 2017-06-29 12:15 alliance 阅读(54248) 评论(0) 推荐(3) 编辑
摘要: makefile 可以用于编译和执行多个C/C++源文件和头文件。 (1) #include "file.h" 和 #include <file.h> 的区别 #include "file.h" 会先在当前目录下查找file.h,然后才在系统头文件目录中进行查找; #include <file.h> 阅读全文
posted @ 2017-06-27 13:08 alliance 阅读(379) 评论(0) 推荐(0) 编辑
摘要: Eigen是一个能够进行线性代数运算的C++开源软件包,包含矩阵和矢量操作,Matlab中对矩阵的大多数操作都可以在Eigen中找到。 最近需要计算厄米特矩阵的逆,基于LLT分解和LDLT分解,自己写了几个代码,但精度不是很高,所以考虑了使用Eigen,精度和准确性还是蛮高的。 网址: http:/ 阅读全文
posted @ 2017-04-29 17:50 alliance 阅读(3933) 评论(0) 推荐(0) 编辑
摘要: 转载自: Introduction to MPI - Part II (Youtube) Buffering Suppose we have These are blocking communications, which means they will not return until the a 阅读全文
posted @ 2017-04-18 13:10 alliance 阅读(1921) 评论(0) 推荐(0) 编辑