Skip to content

Commit a2ca0a6

Browse files
Fix deepcopy invalidation (#640)
1 parent e65dc9f commit a2ca0a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/host/abstractarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ end
324324

325325
Base.copy(x::AbstractGPUArray) = error("Not implemented") # COV_EXCL_LINE
326326

327-
Base.deepcopy(x::AbstractGPUArray) = copy(x)
327+
Base.deepcopy_internal(x::AbstractGPUArray, ::IdDict) = copy(x)
328328

329329

330330
# filtering

0 commit comments

Comments
 (0)