| 58 | } |
| 59 | |
| 60 | DeviceMemoryBase HostExecutor::Allocate(uint64 size, int64 memory_space) { |
| 61 | CHECK_EQ(memory_space, 0); |
| 62 | return DeviceMemoryBase(new char[size], size); |
| 63 | } |
| 64 | |
| 65 | void *HostExecutor::GetSubBuffer(DeviceMemoryBase *parent, uint64 offset_bytes, |
| 66 | uint64 size_bytes) { |
nothing calls this directly
no test coverage detected