| 343 | } |
| 344 | |
| 345 | void TensorImplDft::copy_from(const TensorImplBase* src_impl) { |
| 346 | if (is_continue_memory()) { |
| 347 | copy_from_continue(src_impl); |
| 348 | } else { |
| 349 | copy_from_fixlayout(src_impl); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | void TensorImplDft::copy_from_continue(const TensorImplBase* src_impl) { |
| 354 | auto src = static_cast<const TensorImplDft*>(src_impl); |
no outgoing calls
no test coverage detected