kokkos / stdBLAS

Reference Implementation for stdBLAS
Other
127 stars 22 forks source link

fix #223: cmake ambigous output file name #228

Closed mzuzek closed 2 years ago

mzuzek commented 2 years ago

Fixes #223

Tests with extra arguments (lower and upper) could be writing to the same file simultaneously when executed in parallel (ctest -j 4) - which resulted in corrupted test outputs and Kokkos implementation not detected properly (in those corrupted outputs).

This fix adds those extra arguments to test output file names making them unique and preventing the collision.

fnrizzi commented 2 years ago

Ah! This makes sense I remember having similar issues in another project. Thanks for finding it!