Returns whether this is a single-element allocation.
| 139 | |
| 140 | // Returns whether this is a single-element allocation. |
| 141 | bool IsScalar() const { return ElementCount() == 1; } |
| 142 | |
| 143 | // Create a typed area of DeviceMemory with a given opaque pointer and the |
| 144 | // quantity of bytes in the allocation. This function is broken out to |
nothing calls this directly
no test coverage detected