We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23fe47 commit edfdc1aCopy full SHA for edfdc1a
src/ptx.jl
@@ -94,8 +94,9 @@ isintrinsic(@nospecialize(job::CompilerJob{PTXCompilerTarget}), fn::String) =
94
95
# XXX: the debuginfo part should be handled by GPUCompiler as it applies to all back-ends.
96
runtime_slug(@nospecialize(job::CompilerJob{PTXCompilerTarget})) =
97
- "ptx-sm_$(job.config.target.cap.major)$(job.config.target.cap.minor)" *
98
- "-debuginfo=$(Int(llvm_debug_info(job)))"
+ "ptx$(job.config.target.ptx.major)$(job.config.target.ptx.minor)" *
+ "-sm_$(job.config.target.cap.major)$(job.config.target.cap.minor)" *
99
+ "-debuginfo=$(Int(llvm_debug_info(job)))"
100
101
function finish_module!(@nospecialize(job::CompilerJob{PTXCompilerTarget}),
102
mod::LLVM.Module, entry::LLVM.Function)
0 commit comments