| 143 | |
| 144 | struct Hash { |
| 145 | size_t operator()(const OperatorKey& key) const { |
| 146 | return ::tflite::CombineHashes( |
| 147 | {std::hash<size_t>()(static_cast<size_t>(key.type())), |
| 148 | std::hash<std::string>()(key.custom_code()), |
| 149 | std::hash<int>()(key.version())}); |
| 150 | } |
| 151 | }; |
| 152 | |
| 153 | private: |
nothing calls this directly
no test coverage detected