| 24 | |
| 25 | #if TENSORFLOW_USE_ROCM |
| 26 | TEST(RocmRocdlPathTest, ROCDLPath) { |
| 27 | VLOG(2) << "ROCm-Deivce-Libs root = " << RocdlRoot(); |
| 28 | std::vector<string> rocdl_files; |
| 29 | TF_EXPECT_OK(Env::Default()->GetMatchingPaths( |
| 30 | io::JoinPath(RocdlRoot(), "*.amdgcn.bc"), &rocdl_files)); |
| 31 | EXPECT_LT(0, rocdl_files.size()); |
| 32 | } |
| 33 | #endif |
| 34 | |
| 35 | } // namespace tensorflow |
nothing calls this directly
no test coverage detected