mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
24 lines
856 B
Tcsh
Executable File
24 lines
856 B
Tcsh
Executable File
#!/bin/sh
|
|
./testfloat_gen -rnear_even -i32_to_f64 > i32_f64_rne.tv
|
|
./testfloat_gen -rminMag -i32_to_f64 > i32_f64_rz.tv
|
|
./testfloat_gen -rmax -i32_to_f64 > i32_f64_ru.tv
|
|
./testfloat_gen -rmin -i32_to_f64 > i32_f64_rd.tv
|
|
|
|
./testfloat_gen -rnear_even -i64_to_f64 > i64_f64_rne.tv
|
|
./testfloat_gen -rminMag -i64_to_f64 > i64_f64_rz.tv
|
|
./testfloat_gen -rmax -i64_to_f64 > i64_f64_ru.tv
|
|
./testfloat_gen -rmin -i64_to_f64 > i64_f64_rd.tv
|
|
|
|
./testfloat_gen -rnear_even -i32_to_f32 > i32_f32_rne.tv
|
|
./testfloat_gen -rminMag -i32_to_f32 > i32_f32_rz.tv
|
|
./testfloat_gen -rmax -i32_to_f32 > i32_f32_ru.tv
|
|
./testfloat_gen -rmin -i32_to_f32 > i32_f32_rd.tv
|
|
|
|
./testfloat_gen -rnear_even -i64_to_f32 > i64_f32_rne.tv
|
|
./testfloat_gen -rminMag -i64_to_f32 > i64_f32_rz.tv
|
|
./testfloat_gen -rmax -i64_to_f32 > i64_f32_ru.tv
|
|
./testfloat_gen -rmin -i64_to_f32 > i64_f32_rd.tv
|
|
|
|
|
|
|