iteration second is too long

Hi i’m training the CNN model on my new, second local computer(i.e, i have two computer which have same invironment of software and hardware), but the iteration time is much, much longer than first computer (at least three times longer than first computer)

and i found that interval(?) of using CPU and GPU(CUDA) is much longer in this second computer, and i don’t know why this happened. (and…does this situation have anythig to do with that Torch’s DataLoader’s num_workers or pin_memory?, or is this problem is because of the learning rate? i changed learning rate : 1e-4, batch size : 32 to learning rate : 1.25e-5, batch size : 4 in second computer, and nothing is changed without this parameter)

image
(in here, Once the GPU has been used, it has not been used for a long time since )
problem 2
(like this…) :frowning:

I mean, at my first computer, the usage on the CPU remained almost the same, and the usage graph on the GPU came out quite frequently(like below picture), like attached photo of below (as attached above, the usage graph appears once and does not appear at all for a long time)
situation 1

does anyone have the solution of this situation? or is this situation is common situation?
(additionally, total number of train image is 2600, validation image is 399)

i’m sorry for these stupid question…and Thanks for all your response :slight_smile:

You might need to profile the code to narrow down where the bottleneck in your new system might be. Without seeing a profile and a timeline one can only guess, which might not be too helpful.

Thanks a lot for your advise :smiling_face: , and i want to ask again which part you need for additional information (I’m not sure which part I should attach because my code is quite separated by function) :sob:

(plus, second per iteration is increase almost exponentially, like 15s/it(at 10epoch) → 25s/it(at 30epoch) → 636.10s/it(at 201 epoch)… :smiling_face_with_tear:)

I wasn’t asking for the code as the issue seems to be system-dependent. Instead you should profile both systems using the native PyTorch profiler or e.g. Nsight Systems to check where the difference comes from.

Thank you so much for your advice. I’ll check it out step by step in the way you advised me :smiling_face: :face_holding_back_tears: