4 lines
297 B
Bash
Executable file
4 lines
297 B
Bash
Executable file
set -euo pipefail
|
|
HOST="zhan4854@csel-cuda-02.cselabs.umn.edu"
|
|
rsync -azPr --exclude 'large_cpd.txt' . $HOST:~/hwk4
|
|
ssh $HOST bash -c 'set -euo pipefail; module load soft/cuda/local; module initadd soft/cuda/local; cd hwk4; make clean; make; ls; ./km_cuda ./dataset/small_gaussian.txt 512 64 128'
|