| 618 | } |
| 619 | |
| 620 | DeviceMemoryBase GpuExecutor::Allocate(uint64 size, int64 memory_space) { |
| 621 | CHECK_EQ(memory_space, 0); |
| 622 | return DeviceMemoryBase(GpuDriver::DeviceAllocate(context_, size), size); |
| 623 | } |
| 624 | |
| 625 | void* GpuExecutor::GetSubBuffer(DeviceMemoryBase* mem, uint64 offset_bytes, |
| 626 | uint64 size_bytes) { |
nothing calls this directly
no test coverage detected