| 121 | } |
| 122 | |
| 123 | inline const uint32_t shapes(uint32_t offset) const { |
| 124 | auto itr = shapes_.find(offset); |
| 125 | if (itr == shapes_.end()) { |
| 126 | throw std::runtime_error("Cannot find shape information"); |
| 127 | } |
| 128 | return itr->second; |
| 129 | } |
| 130 | |
| 131 | inline auto const& atoi_info() const { |
| 132 | return atoi_info_; |
no test coverage detected