| 532 | class RStorage, typename = typename std::enable_if<!std::is_same< |
| 533 | TensorStorage, RStorage>::value>::type> |
| 534 | static ChainReturnType make_proxy(const TensorND<RStorage>& src) { |
| 535 | ChainReturnType ret; |
| 536 | ret.reset(TensorStorage::make_proxy(src.storage()), src.layout()); |
| 537 | return ret; |
| 538 | } |
| 539 | |
| 540 | //! similar to HostTensorStorage::proxy_to_default_cpu |
| 541 | template < |