riscv-non-isa/riscv-arch-test

rv64i_m F and D tests mostly missing?

davidharrishmc opened this issue · 2 comments

The F and D tests mostly vanished form rv64i_m/src since I last looked at them this summer. They are still present in rv32i_m. Only the fcvt tests remain in rv64.

What happened and are they returning soon?

Thanks!

David Harris

pawks commented

The F and D tests in the rv32i_m are applicable/included for rv64 too. The same tests are configurable to work for both(32&64) the values of FLEN currently. The tests are sorted and placed into directories
depending on the first ISA configuration which introduces the corresponding instruction canonically
i.e according to the categorisation in Chapter 26 of the spec. So for a RV64FD configuration tests from all the 4 folders i.e rv32i_m/F, rv32i_m/D, rv64i_m/F and rv64i_m/D need to be included.

Thanks!