eyalroz / cuda-kat

CUDA kernel author's tools
BSD 3-Clause "New" or "Revised" License
104 stars 8 forks source link

Consider leveraging __managed__ in unit test code #69

Open eyalroz opened 4 years ago

eyalroz commented 4 years ago

Using managed memory may simplify the unit test infrastructure - especially since, with unit tests, we can allow ourselves practices which would be problematic elsewhere, like using static variables or static class variables, which are specific to certain test cases.