| 87 | } |
| 88 | |
| 89 | bool IsSymbolicExecutionDevice(const absl::string_view device_name) { |
| 90 | absl::flat_hash_set<std::string>* symbolic_devices = GetSymbolicDeviceList(); |
| 91 | if (symbolic_devices->contains(device_name)) { |
| 92 | return true; |
| 93 | } else { |
| 94 | return false; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | } // namespace tensorflow |
no test coverage detected