Skip to content
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

feat: more readable error printing #979

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ version = "0.2.46"
[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6"
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
EnumX = "4e289a0a-7415-4d19-859d-a7e5c4648b56"
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"
Expand Down Expand Up @@ -64,6 +65,7 @@ Adapt = "4.1"
ArrayInterface = "7.17.1"
CEnum = "0.5"
CUDA = "5.6"
DeepDiffs = "1.2"
Downloads = "1.6"
EnumX = "1"
Enzyme = "0.13.28"
Expand Down
28 changes: 14 additions & 14 deletions src/Compiler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module Compiler

using Reactant_jll
using Libdl: dlsym
using DeepDiffs: deepdiff

import ..Reactant:
Reactant,
Expand Down Expand Up @@ -1940,24 +1941,23 @@ XLA.cost_analysis(thunk::Thunk) = XLA.cost_analysis(thunk.exec)
struct MisMatchedThunkTypeError{ThunkTy,FoundTypes} <: Base.Exception end

function Base.showerror(
io::IO, ece::MisMatchedThunkTypeError{Thunk{FTy,tag,ArgTypes,IsClosure},FoundTypes}
) where {FTy,tag,ArgTypes,FoundTypes,IsClosure}
io::IO,
::MisMatchedThunkTypeError{
Thunk{FTy,tag,ArgTypes,IsClosure,ExecTy,DeviceTy},FoundTypes
},
) where {FTy,tag,ArgTypes,FoundTypes,IsClosure,ExecTy,DeviceTy}
print(
io,
"\nThe Reactant-compiled function `$(Thunk{FTy, tag, ArgTypes, IsClosure})` exists, but no method is defined for this combination of argument types.",
"\nThe Reactant-compiled function `$(Thunk{FTy, tag, ArgTypes, IsClosure, ExecTy, DeviceTy})` exists, but no method is defined for this combination of argument types.\n\nDiff between input argument types and compiled argument types:\n\n",
)
print(
io,
"\nYou passed in arguments with types\n\t(" *
join(FoundTypes.parameters, ", ") *
")",
)
return print(
io,
"\nHowever the method you are calling was compiled for arguments with types\n\t(" *
join(ArgTypes.parameters, ", ") *
")",

str = sprint(
show,
deepdiff(join(FoundTypes.parameters, ", "), join(ArgTypes.parameters, ", "));
context=IOContext(io),
)
println(io, strip(str, '"'))
return nothing
end

@generated function (thunk::Thunk{FTy,tag,ArgTypes,IsClosure,ExecTy,DeviceTy})(
Expand Down