SyncStorageRegionsFromGPU syncs given regions from the Storage buffer memory from GPU to CPU, in one call. Use SyncRegValueIndexFromCPU to get the regions.
(regs ...MemReg)
| 374 | // SyncStorageRegionsFromGPU syncs given regions from the Storage buffer memory |
| 375 | // from GPU to CPU, in one call. Use SyncRegValueIndexFromCPU to get the regions. |
| 376 | func (mm *Memory) SyncStorageRegionsFromGPU(regs ...MemReg) { |
| 377 | mm.TransferRegsFromGPU(regs) |
| 378 | } |
| 379 | |
| 380 | // TransferToGPU transfers entire staging to GPU for all buffs |
| 381 | func (mm *Memory) TransferToGPU() { |
nothing calls this directly
no test coverage detected