| 719 | const FunctionLibraryDefinition& flib_def() const { return ops_; } |
| 720 | |
| 721 | void CheckDeviceNameIndex(int index) { |
| 722 | DCHECK_GE(index, 0); |
| 723 | DCHECK_LT(index, static_cast<int>(device_names_.size())); |
| 724 | } |
| 725 | |
| 726 | int InternDeviceName(const string& device_name); |
| 727 |
no test coverage detected