readme.txt

来自「并行计算算法实践源程序」· 文本 代码 · 共 28 行

TXT
28
字号
1. compile:
mpicc jacobi.c -o jacobi

2. run:
mpirun -np 4 jacobi

3. result (also in file dataOut.txt):
Input of file "dataIn.txt"
4       5
9.000000        -1.000000       -1.000000       1.000000        7.000000
0.000000        7.000000        -2.000000       0.000000        5.000000
-3.000000       -1.000000       3.000000        -1.000000       -1.000000
1.000000        1.000000        1.000000        9.000000        3.000000

0.000000        0.000000        1.000000        0.000000


Output of solution
x[0] = 0.999969
x[1] = 0.999960
x[2] = 0.999932
x[3] = 0.000031

Iteration num = 14
Whole running time    = 0.016051 seconds
Distribute data time  = 0.002984 seconds
Parallel compute time = 0.013067 seconds

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?