Files
rocm-systems/projects/hip/util/vim
Ioannis Assiouras 78c9afb098 SWDEV-470372 - Added hipExtHostAlloc API
This change adds a new HIP API `hipExtHostAlloc` which preserves
the functionality of `hipHostMalloc`.

Change-Id: I2198ecd7a10a1ceb28b8fd32b16625b1b6d3abaf


[ROCm/hip commit: 83511e0159]
2024-08-22 13:16:55 -04:00
..

How to install?

  1. Add the hip.vim to ~/.vim/syntax/ directory
  2. 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