| 19 | } |
| 20 | |
| 21 | ShapeValue::ref_t InterpreterValue::shape() const { |
| 22 | if (!m_shape) { |
| 23 | m_shape = ShapeValue::make( |
| 24 | ValueShape::from(handle()->channel()->get_shape(handle()->handle()))); |
| 25 | } |
| 26 | return m_shape; |
| 27 | } |
| 28 | |
| 29 | ValueRefList InterpreterTransformation::apply_op( |
| 30 | const ApplyOp& apply_op, Span<ValueRef> inputs) { |
no test coverage detected