You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/errors.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -304,9 +304,9 @@ function Base.showerror(io::IO, ece::EnzymeNoTypeError)
304
304
print(io, "Enzyme cannot statically prove the type of a value being differentiated and risks a correctness error if it gets it wrong.\n")
305
305
print(io, " Generally this shouldn't occur as Enzyme records type information from julia, but may be expected if you, for example copy untyped data.\n")
306
306
print(io, " or alternatively emit very large sized registers that exceed the maximum size of Enzyme's type analysis. If it seems reasonable to differentiate\n")
307
-
print(io, " this code, open an issue! If the cause of the error is too large of a register, you can request Enzyme increase the size (https://enzymead.github.io/Enzyme.jl/dev/api/#Enzyme.API.maxtypeoffset!-Tuple{Any})\n")
308
-
print(io, " or depth (https://enzymead.github.io/Enzyme.jl/dev/api/#Enzyme.API.maxtypedepth!-Tuple{Any}) of its Type analysis.\n");
309
-
print(io, " Alternatively, you can tell Enzyme to take its best guess from context with (https://enzymead.github.io/Enzyme.jl/dev/api/#Enzyme.API.looseTypeAnalysis!-Tuple{Any})\n")
307
+
print(io, " this code, open an issue! If the cause of the error is too large of a register, you can request Enzyme increase the size (https://enzyme.mit.edu/julia/dev/api/#Enzyme.API.maxtypeoffset!-Tuple{Any})\n")
308
+
print(io, " or depth (https://enzyme.mit.edu/julia/dev/api/#Enzyme.API.maxtypedepth!-Tuple{Any}) of its type analysis.\n");
309
+
print(io, " Alternatively, you can tell Enzyme to take its best guess from context with (https://enzyme.mit.edu/julia/dev/api/#Enzyme.API.looseTypeAnalysis!-Tuple{Any})\n")
310
310
print(io, " All of these settings are global configurations that need to be set immeidately after loading Enzyme, before any differentiation occurs\n")
311
311
print(io, " To toggle more information for debugging (needed for bug reports), set Enzyme.Compiler.VERBOSE_ERRORS[] = true (default false)\n")
0 commit comments