You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			507 B
		
	
	
	
		
			Makefile
		
	
			
		
		
	
	
			24 lines
		
	
	
		
			507 B
		
	
	
	
		
			Makefile
		
	
| install: 
 | |
| 	source ./script_install.sh
 | |
| 
 | |
| run: binaries
 | |
| 	./run_simulation.sh
 | |
| 
 | |
| fftma:
 | |
| 	cd fftma_module/gen && python3 setup.py install --user
 | |
| 
 | |
| binaries: 
 | |
| 	./script_fortran.sh
 | |
| 
 | |
| test: binaries fftma
 | |
| 	cd tests/integration && python3 -m unittest test.py
 | |
| 
 | |
| perf: binaries
 | |
| 	cd tests/performance && python3 generation.py
 | |
| 	cd tests/performance && python3 connectivity.py
 | |
| 
 | |
| test-gen: fftma
 | |
| 	cd tests/stages/generation && python3 -m unittest test.py
 | |
| 
 | |
| time-gen: fftma
 | |
| 	cd tests/performance/generation && python3 time.py $(N)
 |