| 228 | } |
| 229 | |
| 230 | bool is_same_st(const OpDef& lhs, const OpDef& rhs) { |
| 231 | auto &&a = static_cast<const CustomOpDef&>(lhs), |
| 232 | &&b = static_cast<const CustomOpDef&>(rhs); |
| 233 | return a.param() == b.param() && a.runtime_id() == b.runtime_id(); |
| 234 | } |
| 235 | |
| 236 | std::vector<std::pair<const char*, std::string>> props(const OpDef& def) { |
| 237 | auto&& custom_opdef = def.cast_final_safe<CustomOpDef>(); |
nothing calls this directly
no test coverage detected