83511e0159
This change adds a new HIP API `hipExtHostAlloc` which preserves the functionality of `hipHostMalloc`. Change-Id: I2198ecd7a10a1ceb28b8fd32b16625b1b6d3abaf
How to install?
- Add the
hip.vimto~/.vim/syntax/directory - Add the following text to the end of
~/.vimrc
augroup filetypedetect
au BufNewFile,BufRead *.cpp set filetype=cpp syntax=hip
augroup END
augroup filetypedetect
au BufNewFile,BufRead *.c set filetype=c syntax=hip
augroup END
augroup filetypedetect
au BufNewFile,BufRead *.cu set filetype=cu syntax=hip
augroup END