| 756 | } |
| 757 | |
| 758 | uint64_t Tensor::get_ready_event() { |
| 759 | if (m_produced_at == 0) { |
| 760 | m_produced_at = record_event(comp_node()); |
| 761 | } |
| 762 | return m_produced_at; |
| 763 | } |
| 764 | |
| 765 | bool Tensor::storage_is_unique() { |
| 766 | return m_blob.unique() && m_blob->storage_is_unique(); |
no test coverage detected