Fix Typo HipHostMemory to HipHostMalloc (#1236)

[ROCm/hip commit: 8ff7a99a4c]
Этот коммит содержится в:
gilbertlee-amd
2019-07-18 22:46:07 -06:00
коммит произвёл Maneesh Gupta
родитель 4db7b0526c
Коммит 373fd99aa1
+1 -1
Просмотреть файл
@@ -3,7 +3,7 @@
## Host Memory
### Introduction
hipHostMemory allocates pinned host memory which is mapped into the address space of all GPUs in the system.
hipHostMalloc allocates pinned host memory which is mapped into the address space of all GPUs in the system.
There are two use cases for this host memory:
- Faster HostToDevice and DeviceToHost Data Transfers:
The runtime tracks the hipHostMalloc allocations and can avoid some of the setup required for regular unpinned memory. For exact measurements on a specific system, experiment with --unpinned and --pinned switches for the hipBusBandwidth tool.