Silencing step calculations

Hello, is there anyway to slence pytorchs printing each backprop step to terminal? I am afraid it is cnsuming more resources than I would like by printing all backprops for resnet 50.

PyTorch does not automatically print during the backward call.
Most likely you are using some print statements in your training loop, which print some information.

Are you using plain PyTorch or some higher level API?
In the latter case, the wrapper might print something by default, which could probably be disabled.