| 4 | namespace imperative { |
| 5 | |
| 6 | ValueRefList Operator::fallback(Span<ValueRef> inputs) const { |
| 7 | mgb_throw(MegBrainError, "no fallback implementation for %s", to_string().c_str()); |
| 8 | } |
| 9 | |
| 10 | size_t Operator::register_type(std::type_index type) { |
| 11 | auto& types = const_cast<std::vector<std::type_index>&>(registered_types()); |
no test coverage detected