```julia-repl julia> using Flux, CUDA julia> x = randn(5); x2 = (x, x); cx2 = gpu(x2); julia> cx2[1] === cx2[2] # Flux v0.14.24 false julia> cx2[1] === cx2[2] # Flux v0.14.20 true ``` It would cause problems for weight sharing. Probably due to #2502