Returns whether the two DeviceMemoryBase segments are identical (both in their opaque pointer and size).
| 93 | // Returns whether the two DeviceMemoryBase segments are identical (both in |
| 94 | // their opaque pointer and size). |
| 95 | bool IsSameAs(const DeviceMemoryBase &other) const { |
| 96 | return opaque() == other.opaque() && size() == other.size(); |
| 97 | } |
| 98 | |
| 99 | protected: |
| 100 | friend class StreamExecutor; |