-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: kernels #314
base: main
Are you sure you want to change the base?
WIP: kernels #314
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,81 @@ | ||||||||||||||||||||||||||||||||||||||||||
module ReactantCUDAExt | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
using CUDA | ||||||||||||||||||||||||||||||||||||||||||
using Reactant: | ||||||||||||||||||||||||||||||||||||||||||
Reactant, TracedRArray, AnyTracedRArray, materialize_traced_array, MLIR, TracedRNumber | ||||||||||||||||||||||||||||||||||||||||||
using ReactantCore: @trace | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
const _kernel_instances = Dict{Any, Any}() | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
function recufunction(f::F, tt::TT=Tuple{}; kwargs...) where {F,TT} | ||||||||||||||||||||||||||||||||||||||||||
cuda = CUDA.active_state() | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
F2 = Reactant.traced_type(F, (), Val(Reactant.TracedToConcrete)) | ||||||||||||||||||||||||||||||||||||||||||
tt2 = Reactant.traced_type(tt, (), Val(Reactant.TracedToConcrete)) | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
Base.@lock CUDA.cufunction_lock begin | ||||||||||||||||||||||||||||||||||||||||||
# compile the function | ||||||||||||||||||||||||||||||||||||||||||
cache = CUDA.compiler_cache(cuda.context) | ||||||||||||||||||||||||||||||||||||||||||
source = CUDA.methodinstance(F2, tt2) | ||||||||||||||||||||||||||||||||||||||||||
config = CUDA.compiler_config(cuda.device; kwargs...)::CUDA.CUDACompilerConfig | ||||||||||||||||||||||||||||||||||||||||||
fun = CUDA.GPUCompiler.cached_compilation(cache, source, config, CUDA.compile, CUDA.link) | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JuliaFormatter] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
@show fun | ||||||||||||||||||||||||||||||||||||||||||
@show fun.mod | ||||||||||||||||||||||||||||||||||||||||||
# create a callable object that captures the function instance. we don't need to think | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+26
to
+28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JuliaFormatter] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
# about world age here, as GPUCompiler already does and will return a different object | ||||||||||||||||||||||||||||||||||||||||||
key = (objectid(source), hash(fun), f) | ||||||||||||||||||||||||||||||||||||||||||
kernel = get(_kernel_instances, key, nothing) | ||||||||||||||||||||||||||||||||||||||||||
if kernel === nothing | ||||||||||||||||||||||||||||||||||||||||||
# create the kernel state object | ||||||||||||||||||||||||||||||||||||||||||
state = CUDA.KernelState(create_exceptions!(fun.mod), UInt32(0)) | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
kernel = CUDA.HostKernel{F,tt}(f, fun, state) | ||||||||||||||||||||||||||||||||||||||||||
_kernel_instances[key] = kernel | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
return kernel::CUDA.HostKernel{F,tt} | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
const CC = Core.Compiler | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
import Core.Compiler: | ||||||||||||||||||||||||||||||||||||||||||
AbstractInterpreter, | ||||||||||||||||||||||||||||||||||||||||||
abstract_call, | ||||||||||||||||||||||||||||||||||||||||||
abstract_call_known, | ||||||||||||||||||||||||||||||||||||||||||
ArgInfo, | ||||||||||||||||||||||||||||||||||||||||||
StmtInfo, | ||||||||||||||||||||||||||||||||||||||||||
AbsIntState, | ||||||||||||||||||||||||||||||||||||||||||
get_max_methods, | ||||||||||||||||||||||||||||||||||||||||||
CallMeta, | ||||||||||||||||||||||||||||||||||||||||||
Effects, | ||||||||||||||||||||||||||||||||||||||||||
NoCallInfo, | ||||||||||||||||||||||||||||||||||||||||||
widenconst, | ||||||||||||||||||||||||||||||||||||||||||
mapany, | ||||||||||||||||||||||||||||||||||||||||||
MethodResultPure | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JuliaFormatter] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
function Reactant.set_reactant_abi( | ||||||||||||||||||||||||||||||||||||||||||
interp, | ||||||||||||||||||||||||||||||||||||||||||
f::typeof(CUDA.cufunction), | ||||||||||||||||||||||||||||||||||||||||||
arginfo::ArgInfo, | ||||||||||||||||||||||||||||||||||||||||||
si::StmtInfo, | ||||||||||||||||||||||||||||||||||||||||||
sv::AbsIntState, | ||||||||||||||||||||||||||||||||||||||||||
max_methods::Int=get_max_methods(interp, f, sv), | ||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||
(; fargs, argtypes) = arginfo | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
arginfo2 = ArgInfo( | ||||||||||||||||||||||||||||||||||||||||||
if fargs isa Nothing | ||||||||||||||||||||||||||||||||||||||||||
nothing | ||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||
[:($(recufunction)), fargs[2:end]...] | ||||||||||||||||||||||||||||||||||||||||||
end, | ||||||||||||||||||||||||||||||||||||||||||
[Core.Const(recufunction), argtypes[2:end]...], | ||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||
return abstract_call_known(interp, recufunction, arginfo2, si, sv, max_methods) | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+70
to
+79
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JuliaFormatter] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
end # module ReactantCUDAExt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using Reactant | ||
using Test | ||
using CUDA | ||
|
||
function square_kernel!(x) | ||
i = threadIdx().x | ||
x[i] *= x[i] | ||
sync_threads() | ||
return nothing | ||
end | ||
|
||
# basic squaring on GPU | ||
function square!(x) | ||
@cuda blocks = 1 threads = length(x) square_kernel!(x) | ||
return nothing | ||
end | ||
|
||
@testset "Square Kernel" begin | ||
oA = collect(1:1:64) | ||
A = Reactant.to_rarray(oA) | ||
func = @compile square!(A) | ||
@test all(A .≈ (oA .* oA)) | ||
end |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -42,35 +42,36 @@ end | |||||
const REACTANT_TEST_GROUP = lowercase(get(ENV, "REACTANT_TEST_GROUP", "all")) | ||||||
|
||||||
@testset "Reactant.jl Tests" begin | ||||||
if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "core" | ||||||
@safetestset "Layout" include("layout.jl") | ||||||
@safetestset "Tracing" include("tracing.jl") | ||||||
@safetestset "Basic" include("basic.jl") | ||||||
@safetestset "Autodiff" include("autodiff.jl") | ||||||
@safetestset "Complex" include("complex.jl") | ||||||
@safetestset "Broadcast" include("bcast.jl") | ||||||
@safetestset "Struct" include("struct.jl") | ||||||
@safetestset "Closure" include("closure.jl") | ||||||
@safetestset "Compile" include("compile.jl") | ||||||
@safetestset "Buffer Donation" include("buffer_donation.jl") | ||||||
@safetestset "Shortcuts to MLIR ops" include("ops.jl") | ||||||
@safetestset "Wrapped Arrays" include("wrapped_arrays.jl") | ||||||
@safetestset "Control Flow" include("control_flow.jl") | ||||||
@safetestset "Linear Algebra" include("linear_algebra.jl") | ||||||
end | ||||||
#if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "core" | ||||||
@safetestset "CUDA" include("cuda.jl") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JuliaFormatter] reported by reviewdog 🐶
Suggested change
|
||||||
# @safetestset "Layout" include("layout.jl") | ||||||
# @safetestset "Tracing" include("tracing.jl") | ||||||
# @safetestset "Basic" include("basic.jl") | ||||||
# @safetestset "Autodiff" include("autodiff.jl") | ||||||
# @safetestset "Complex" include("complex.jl") | ||||||
# @safetestset "Broadcast" include("bcast.jl") | ||||||
# @safetestset "Struct" include("struct.jl") | ||||||
# @safetestset "Closure" include("closure.jl") | ||||||
# @safetestset "Compile" include("compile.jl") | ||||||
# @safetestset "Buffer Donation" include("buffer_donation.jl") | ||||||
# @safetestset "Shortcuts to MLIR ops" include("ops.jl") | ||||||
# @safetestset "Wrapped Arrays" include("wrapped_arrays.jl") | ||||||
# @safetestset "Control Flow" include("control_flow.jl") | ||||||
# @safetestset "Linear Algebra" include("linear_algebra.jl") | ||||||
# end | ||||||
|
||||||
if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "integration" | ||||||
@safetestset "AbstractFFTs" include("integration/fft.jl") | ||||||
end | ||||||
# if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "integration" | ||||||
# @safetestset "AbstractFFTs" include("integration/fft.jl") | ||||||
# end | ||||||
|
||||||
if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "neural_networks" | ||||||
@testset "Neural Networks" begin | ||||||
@safetestset "NNlib Primitives" include("nn/nnlib.jl") | ||||||
@safetestset "Flux.jl Integration" include("nn/flux.jl") | ||||||
if Sys.islinux() | ||||||
@safetestset "LuxLib Primitives" include("nn/luxlib.jl") | ||||||
@safetestset "Lux Integration" include("nn/lux.jl") | ||||||
end | ||||||
end | ||||||
end | ||||||
# if REACTANT_TEST_GROUP == "all" || REACTANT_TEST_GROUP == "neural_networks" | ||||||
# @testset "Neural Networks" begin | ||||||
# @safetestset "NNlib Primitives" include("nn/nnlib.jl") | ||||||
# @safetestset "Flux.jl Integration" include("nn/flux.jl") | ||||||
# if Sys.islinux() | ||||||
# @safetestset "LuxLib Primitives" include("nn/luxlib.jl") | ||||||
# @safetestset "Lux Integration" include("nn/lux.jl") | ||||||
# end | ||||||
# end | ||||||
# end | ||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶