有没有办法记录 cuda 的“.cu”文件使用 doxygen
由于cuda的“.cu”文件基本上是c,有没有办法我们可以使用doxygen为“.cu”文件生成文档?我注意到 NVIDIA 使用 doxygen 来生成 cuda 的文档。但是,当我使用 doxygen 时,“.cu”文件将被忽略。
As the cuda's ".cu" file is basically c, Is there a way we can use doxygen to generate documentation for ".cu" files? I noticed that NVIDIA use doxygen to generate cuda's docuementation. However when I use doxygen, the ".cu" files are ignored.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果其他人在阅读本文时遇到同样的问题,您需要做的是:
将
*.cu
添加到FILE_PATTERNS
。添加
cu=c++
EXTENSION_MAPPING
。您可以在此处。
如果您使用的是 Windows Doxygen GUI 前端,则
FILE_PATTERNS
位于Input
页面上,EXTENSION_MAPPING
位于Project
上> 页面。In case anyone else is coming along and reading this with the same problem, what you need to do is this:
Add
*.cu
toFILE_PATTERNS
.Add
cu=c++
EXTENSION_MAPPING
.You can find documentation for both options here.
If you're using the Windows Doxygen GUI frontend,
FILE_PATTERNS
is on theInput
page andEXTENSION_MAPPING
is on theProject
page.我怀疑这是你的问题: http://www.doxygen.nl/manual/ config.html#cfg_file_patterns
I suspect that this is your problem: http://www.doxygen.nl/manual/config.html#cfg_file_patterns