| 216 | HostStorage::ref_t storage; |
| 217 | |
| 218 | HostTensorND as_tensor_nd() const { |
| 219 | HostTensorND ret(CompNode::default_cpu(), shape.as_tensor_shape(), dtype); |
| 220 | ret.only_reset_raw_storage(*storage); |
| 221 | return ret; |
| 222 | } |
| 223 | }; |
| 224 | |
| 225 | template <typename seq_type, typename ctype> |
nothing calls this directly
no test coverage detected