15 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
cd /home/stecker/svmpi/
 | 
						|
 | 
						|
nmax=895882 # up to reflection group word length 22
 | 
						|
# nmax=11575 # up to reflection group word length 14
 | 
						|
 | 
						|
outfile=result_$(date +%Y%m%d_%H%M%S).out
 | 
						|
 | 
						|
 | 
						|
unset DISPLAY
 | 
						|
 | 
						|
make singular_values &&
 | 
						|
time mpirun -n 100 -x LD_LIBRARY_PATH=/home/stecker/svmpi/libs --hostfile hostfile_big ./singular_values $nmax utexas_cluster_restart $outfile
 |