Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions src/compiler/compilation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
Base.@kwdef struct CUDACompilerParams <: AbstractCompilerParams
cap::VersionNumber
ptx::VersionNumber
link_libdevice::Bool = true # Used by Reactant.jl
end

function Base.hash(params::CUDACompilerParams, h::UInt)
h = hash(params.cap, h)
h = hash(params.ptx, h)

h = hash(params.link_libdevice, h)
return h
end

Expand All @@ -18,15 +19,19 @@ const CUDACompilerJob = CompilerJob{PTXCompilerTarget,CUDACompilerParams}
GPUCompiler.runtime_module(@nospecialize(job::CUDACompilerJob)) = CUDA

# filter out functions from libdevice and cudadevrt
GPUCompiler.isintrinsic(@nospecialize(job::CUDACompilerJob), fn::String) =
invoke(GPUCompiler.isintrinsic,
Tuple{CompilerJob{PTXCompilerTarget}, typeof(fn)},
job, fn) ||
fn == "__nvvm_reflect" || startswith(fn, "cuda")
function GPUCompiler.isintrinsic(@nospecialize(job::CUDACompilerJob), fn::String)
is_intrinsic = invoke(GPUCompiler.isintrinsic,
Tuple{CompilerJob{PTXCompilerTarget}, typeof(fn)}, job, fn)
is_intrinsic |= fn == "__nvvm_reflect"
is_intrinsic |= startswith(fn, "cuda")
is_intrinsic |= !job.config.params.link_libdevice ? startswith(fn, "__nv_") : false # Reactant.jl wants to handle __nv_ functions
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is pretty unreadable.

I also don't understand why this should be handled here. Doesn't Reactant have its own compiler job type to implement isintrinsic for? Or make sure the intrinsics are lowered before calling into GPUCompiler.jl validation?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No Reactant does not have a compiler job (it overlays a few functions of cuda.jl and imports from cuda.jl directly)

return is_intrinsic
end

# link libdevice
function GPUCompiler.link_libraries!(@nospecialize(job::CUDACompilerJob), mod::LLVM.Module,
undefined_fns::Vector{String})
job.config.params.link_libdevice || return
# only link if there's undefined __nv_ functions
if !any(fn->startswith(fn, "__nv_"), undefined_fns)
return
Expand Down