作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在带有 FindCUDA 的 CMAKE 中,给定一个输入文件 filename.cu
, cuda_compile_ptx
命令生成 cuda_compile_ptx_generated_filename.cu.ptx
形式的输出文件名,但我需要输出文件名的形式为 filename.ptx
.
有没有一种简单的方法可以使这项工作?
最佳答案
理想情况下,您应该能够指定 -o <outputName>
.然而问题是CUDA_COMPILE_PTX
宏实际上覆盖了 -o
选项与 cuda_compile_ptx_generated_${filename}.ptx
这是将 CUDA 编译添加到您的项目的两种替代方法
CUDA_COMPILE_PTX
但是通过使用 add_custom_command
重命名来解决这个问题:add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/my_ptx.ptx COMMAND ${CMAKE_COMMAND} -E copy ${cuda_ptx_files} ${CMAKE_BINARY_DIR}/my_ptx.ptx DEPENDS ${cuda_ptx_files})
并使用 ${CMAKE_BINARY_DIR}/my_ptx.ptx
在 add_custom_target
关于cuda - 如何在 CMake 中更改 cuda_compile_ptx 的输出文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10135795/
我是一名优秀的程序员,十分优秀!