| 22 | namespace { |
| 23 | |
| 24 | TEST(CuDNNVersion, ToString) { |
| 25 | CudnnVersion version(7, 0, 12); |
| 26 | EXPECT_EQ(version.ToString(), "7.0.12"); |
| 27 | } |
| 28 | |
| 29 | TEST(IsSourceCompatibleWithCudnnLibraryTest, Basic) { |
| 30 | // Returns true if both major and minor versions are matching and even if the |
nothing calls this directly
no test coverage detected