mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			639 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			639 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| ./testfloat_gen -rnear_even f32_to_f64 > f32_f64_rne.tv
 | |
| ./testfloat_gen -rminMag f32_to_f64 > f32_f64_rz.tv
 | |
| ./testfloat_gen -rmax f32_to_f64 > f32_f64_ru.tv
 | |
| ./testfloat_gen -rmin f32_to_f64 > f32_f64_rd.tv
 | |
| 
 | |
| ./testfloat_gen -rnear_even f32_to_i64 > f32_i64_rne.tv
 | |
| ./testfloat_gen -rminMag f32_to_i64 > f32_i64_rz.tv
 | |
| ./testfloat_gen -rmax f32_to_i64 > f32_i64_ru.tv
 | |
| ./testfloat_gen -rmin f32_to_i64 > f32_i64_rd.tv
 | |
| 
 | |
| ./testfloat_gen -rnear_even f32_to_ui64 > f32_ui64_rne.tv
 | |
| ./testfloat_gen -rminMag f32_to_ui64 > f32_ui64_rz.tv
 | |
| ./testfloat_gen -rmax f32_to_ui64 > f32_ui64_ru.tv
 | |
| ./testfloat_gen -rmin f32_to_ui64 > f32_ui64_rd.tv
 | |
| 
 |