HAT icon indicating copy to clipboard operation
HAT copied to clipboard

Grad strides do not match bucket view stridesThis is not an error, but may impair performance.

Open BrainMapping-hub opened this issue 1 year ago • 0 comments

Grad strides do not match bucket view strides. This may indicate grad was not created according to the gradient layout contract, or that the param's strides changed since DDP was constructed. This is not an error, but may impair performance. grad.sizes() = [180, 6, 1, 1], strides() = [6, 1, 6, 6] bucket_view.sizes() = [180, 6, 1, 1], strides() = [6, 1, 1, 1] (Triggered internally at ../torch/csrc/distributed/c10d/reducer.cpp:325.) Can I solve this issume?

BrainMapping-hub avatar Oct 07 '24 16:10 BrainMapping-hub