7934cf620d
- Remove "call-to-call" for hipStreamCreate and hipEventCreate. These now call an internal functions rather than calling through hipStreamCreateWithFalgs and hipEventCreateWithFlags. - Add HIP_INIT_API for more functions so they trace correctly. - Use stream#DEVICE.STREAMID in debug messages via new specialization in tace_helper.
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