| 29 | #include "detail/get_rocprim_version.hpp" |
| 30 | |
| 31 | TEST(RocprimBasicTests, GetVersion) |
| 32 | { |
| 33 | auto version = rocprim::version(); |
| 34 | ASSERT_EQ(version, ROCPRIM_VERSION); |
| 35 | } |
| 36 | |
| 37 | // get_rocprim_version_on_device is compiled in a separate source, |
| 38 | // that way we can be sure that all rocPRIM functions are inline |
nothing calls this directly
no test coverage detected