Skip to content

Commit

Permalink
Fix typo "appliable"
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Jan 27, 2024
1 parent 283a1c5 commit 17b5844
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rules/customrules.jl
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function enzyme_custom_fwd(B, orig, gutils, normalR, shadowR)

if llvmf === nothing
@safe_debug "No custom forward rule is applicable for" TT
emit_error(B, orig, "Enzyme: No custom rule was appliable for " * string(TT))
emit_error(B, orig, "Enzyme: No custom rule was applicable for " * string(TT))
return false
end

Expand Down Expand Up @@ -540,7 +540,7 @@ function enzyme_custom_common_rev(forward::Bool, B, orig::LLVM.CallInst, gutils,
aug_RT = something(Core.Compiler.typeinf_type(interp, ami.def, ami.specTypes, ami.sparam_vals), Any)
else
@safe_debug "No custom augmented_primal rule is applicable for" augprimal_TT
emit_error(B, orig, "Enzyme: No custom augmented_primal rule was appliable for " * string(augprimal_TT))
emit_error(B, orig, "Enzyme: No custom augmented_primal rule was applicable for " * string(augprimal_TT))
return C_NULL
end

Expand Down Expand Up @@ -601,7 +601,7 @@ function enzyme_custom_common_rev(forward::Bool, B, orig::LLVM.CallInst, gutils,

if llvmf == nothing
@safe_debug "No custom reverse rule is applicable for" rev_TT
emit_error(B, orig, "Enzyme: No custom reverse rule was appliable for " * string(rev_TT))
emit_error(B, orig, "Enzyme: No custom reverse rule was applicable for " * string(rev_TT))
return C_NULL
end
end
Expand Down

0 comments on commit 17b5844

Please sign in to comment.