$ make
$ mkdir -p ~/.ssh
$ ssh-keygen -t rsa # Leave all empty
$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
ssh pp2
ssh pp3
.
.
.
ssh pp10
3. Maintain consistency by copying the data from the .ssh
directory, ensuring that the keys on each computer are uniform.
$ parallel-scp -A -h host.txt -r ~/.ssh ~
$ time ./simd_exe
$ time ./openmp_exe
$ parallel-scp -h host.txt mpi_exe ~
$ time mpirun -np 8 --hostfile host.txt ./mpi_exe
$ time ./cuda_b_exe
$ time ./cuda_c_exe