From 30330f7902ae20a973e801628f76bcf5764b5348 Mon Sep 17 00:00:00 2001 From: Billy Moses Date: Sat, 7 Dec 2024 12:29:11 -0600 Subject: [PATCH 1/2] Fix for interpreter --- Project.toml | 2 +- src/Interpreter.jl | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Project.toml b/Project.toml index 869c068c2d..a5a8327f7f 100644 --- a/Project.toml +++ b/Project.toml @@ -38,7 +38,7 @@ Adapt = "4" ArrayInterface = "7.10" CEnum = "0.4, 0.5" Downloads = "1.6" -Enzyme = "0.13.15" +Enzyme = "0.13.21" EnzymeCore = "0.8.6" GPUArraysCore = "0.1.6, 0.2" LinearAlgebra = "1.10" diff --git a/src/Interpreter.jl b/src/Interpreter.jl index 66d4b279e2..2efb537927 100644 --- a/src/Interpreter.jl +++ b/src/Interpreter.jl @@ -118,9 +118,8 @@ function set_reactant_abi end ReactantCacheToken(), nothing, #=mt=# world, - false, #=forward_rules=# - false, #=reverse_rules=# - true, #=deferred_lower=# + true, #=forward_rules=# + true, #=reverse_rules=# false, #=broadcast_rewrite=# set_reactant_abi, ) @@ -135,9 +134,8 @@ else REACTANT_CACHE, nothing, #=mt=# world, - false, #=forward_rules=# - false, #=forward_rules=# - true, #=deferred_lower=# + true, #=forward_rules=# + true, #=forward_rules=# false, #=broadcast_rewrite=# set_reactant_abi, ) From 25eccbee78f583877d231397efa9abf5c0bac3db Mon Sep 17 00:00:00 2001 From: William Moses Date: Sat, 7 Dec 2024 12:35:44 -0600 Subject: [PATCH 2/2] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a5a8327f7f..5e18b4b2df 100644 --- a/Project.toml +++ b/Project.toml @@ -39,7 +39,7 @@ ArrayInterface = "7.10" CEnum = "0.4, 0.5" Downloads = "1.6" Enzyme = "0.13.21" -EnzymeCore = "0.8.6" +EnzymeCore = "0.8.6, 0.8.7, 0.8.8" GPUArraysCore = "0.1.6, 0.2" LinearAlgebra = "1.10" NNlib = "0.9.24"