Giter Site home page Giter Site logo

Multi-GPU support about torchsample HOT 5 CLOSED

ncullen93 avatar ncullen93 commented on July 20, 2024 1
Multi-GPU support

from torchsample.

Comments (5)

jph00 avatar jph00 commented on July 20, 2024

I just noticed this in practice - tried to train using nn.DataParallel and got the error that the tensors were on the wrong GPU.

from torchsample.

achaiah avatar achaiah commented on July 20, 2024

Yes, it's not totally as trivial as just stuffing everything into nn.DataParallel but it's not terribly difficult either. I've done it in the past in my custom code but would love to switch to this framework as it has additional callbacks, transforms etc that are nice to use.

from torchsample.

achaiah avatar achaiah commented on July 20, 2024

@jph00 you may want to examine your code to make sure you're working with the same GPU. The parallelization using nn.DataParallel seems to work for me if I leave out regularizers and constraints. I'm still trying to understand why but it basically complains in module_trainer.py:

    593                         regularizer_loss = regularizers(self.model)
    594                         loss += regularizer_loss
--> 595                         batch_logs['regularizer_loss'] = regularizer_loss.data[0]

AttributeError: 'float' object has no attribute 'data'

Looking at the RegularizerModule I don't even see where data attribute is coming from. It seems that loss is always a float... yet somehow the code runs fine when executed on a single GPU. Maybe @ncullen93 has an idea. I'm sure the fix is simple.

P.S. there's a similar issue with constraints.

from torchsample.

achaiah avatar achaiah commented on July 20, 2024

I can get around the issue by simply commenting out the lines that store regularization and constraints loss in batch_logs but it's obviously not ideal. Not sure what the real solution is.

Also, there's an additional problem in the module_trainer.py summary:

torchsample/torchsample/modules/module_trainer.py in summary(self, input_size)
    113         self.model.apply(register_hook)
    114         # make a forward pass
--> 115         self.model(x)
    116         # remove these hooks
    117         for h in hooks:

TypeError: Broadcast function not implemented for CPU tensors

from torchsample.

achaiah avatar achaiah commented on July 20, 2024

I added a pull request partially addressing the multi-GPU issues: #40

from torchsample.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.