打开微信,使用扫一扫进入页面后,点击右上角菜单,
点击“发送给朋友”或“分享到朋友圈”完成分享
(1) 生成.ll文件(bitcode文件),判断问题出现在clang前端还是llvm后端
clang -S hello.mlu -emit-llvm -o hello.ll
clang -cc1 -ast-dump hello.mlu
(3) 如果.ll文件生成正确,生成.s文件(汇编文件),查看汇编指令是否生成正确
clang -S hello.mlu -o hello.s
clang -S hello.cu-mllvm -print-after-all
clang -S hello.cu -mllvm -debug-only=isel
// dump log info
clang -S hello.cu -mllvm -debug-only=isel 2>&1 | tee isel.log
热门帖子
精华帖子