| 148 | const shape& argument::get_shape() const { return this->m_shape; } |
| 149 | |
| 150 | argument argument::reshape(const shape& s) const |
| 151 | { |
| 152 | assert(s.element_space() <= this->get_shape().element_space()); |
| 153 | return {s, this->m_data}; |
| 154 | } |
| 155 | |
| 156 | argument argument::convert(shape::type_t t) const |
| 157 | { |
no test coverage detected