| 598 | } |
| 599 | |
| 600 | auto load_value_at_async(size_type pos, hipStream_t stream) const |
| 601 | { |
| 602 | value_type ret; |
| 603 | HIP_CHECK( |
| 604 | hipMemcpyAsync(&ret, device_raw_ptr_ + pos, value_size, hipMemcpyDeviceToHost, stream)); |
| 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | private: |
| 609 | value_type* device_raw_ptr_; |
nothing calls this directly
no outgoing calls
no test coverage detected