Same Noise vector to train generator and discriminator?

Is there any advantage to using the same noise vector in the same iteration to train a GAN?

I’ve seen cases where 2 different noise vectors are created, one for disc forward pass and another for the generator.

I guess, aside from not having to detach the generator and not setting retain_graph=True,
is there any impact on training?