| 462 | } |
| 463 | |
| 464 | DeviceMemoryBase GpuExecutor::Allocate(uint64 size, int64 memory_space) { |
| 465 | CHECK_EQ(memory_space, 0); |
| 466 | return DeviceMemoryBase(GpuDriver::DeviceAllocate(context_, size), size); |
| 467 | } |
| 468 | |
| 469 | void* GpuExecutor::GetSubBuffer(DeviceMemoryBase* mem, uint64 offset_bytes, |
| 470 | uint64 size_bytes) { |
nothing calls this directly
no test coverage detected