From ec25a912fb97506495085d9f566f06f1c6f5dab1 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Tue, 14 Oct 2025 14:44:38 -0300 Subject: [PATCH] Remove invalidation --- src/host/abstractarray.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/abstractarray.jl b/src/host/abstractarray.jl index 881e6e88c..0080935e9 100644 --- a/src/host/abstractarray.jl +++ b/src/host/abstractarray.jl @@ -324,7 +324,7 @@ end Base.copy(x::AbstractGPUArray) = error("Not implemented") # COV_EXCL_LINE -Base.deepcopy(x::AbstractGPUArray) = copy(x) +Base.deepcopy_internal(x::AbstractGPUArray, ::IdDict) = copy(x) # filtering