I know that there are still a few compatibility issues with 1.11 (#1358) but I'm wondering if changes are necessary on the DI side. My test suite which used to pass on 1.10 suddenly segfaults. Here is the CI log, and here is an MWE:
using Pkg
Pkg.activate(; temp=true)
Pkg.add("Enzyme")
Pkg.add(;
url="https://github.com/gdalle/DifferentiationInterface.jl",
subdir="DifferentiationInterface",
)
Pkg.add(;
url="https://github.com/gdalle/DifferentiationInterface.jl",
subdir="DifferentiationInterfaceTest",
)
using DifferentiationInterface
using DifferentiationInterfaceTest
using Enzyme
test_differentiation(AutoEnzyme(); logging=true)
I know that there are still a few compatibility issues with 1.11 (#1358) but I'm wondering if changes are necessary on the DI side. My test suite which used to pass on 1.10 suddenly segfaults. Here is the CI log, and here is an MWE:
Stacktrace (part of it): stacktrace.txt
Key bits:
Relevant test function:
https://github.com/gdalle/DifferentiationInterface.jl/blob/f6632258d24631f60c7aaeb081aea0cf5849b993/DifferentiationInterfaceTest/src/scenarios/default.jl#L173
Related: