Coder Social home page Coder Social logo

Comments (6)

vkazei avatar vkazei commented on June 27, 2024

hi Alan,
Could you share some thoughts on the easiest way to distribute shots?
Best,
Vladimir

from deepwave.

ar4 avatar ar4 commented on June 27, 2024

from deepwave.

vkazei avatar vkazei commented on June 27, 2024

Thanks a lot for getting back. I am trying to distribute FWI and LSRTM within a single node. I tried to replace prop=nn.DataParallel(prop), which appears to be the most basic option.
source_amplitudes.swapaxes(0,1).swapaxes(1,2) before the propagator and swapping back within the propagator allows distributing inputs seemingly properly. The model itself does not get replicated staying at the "cuda:0" device so even forward propagation does not work...

from deepwave.

ar4 avatar ar4 commented on June 27, 2024

Hi Vladimir,

I think I see the problem. The model is not being registered as a parameter of the propagator, and so PyTorch doesn't know that it needs to copy it to the other devices. I don't have multiple GPUs to test it on at the moment, but does manually registering the parameters as below work?

prop = deepwave.scalar.Propagator({'vp': model}, dx)
prop.register_parameter('vp', torch.nn.Parameter(model))
prop = torch.nn.DataParallel(prop)

If so, I will fix it in the next release of Deepwave so that the parameters are automatically registered.

from deepwave.

vkazei avatar vkazei commented on June 27, 2024

Hi Alan,

Registering the model as a parameter did not change the behavior. Sending it manually to the device with inputs inside the forward method lets nn.DataParallel run, but it looks like it runs sequentially the forward propagation for different GPUs)

from deepwave.

ar4 avatar ar4 commented on June 27, 2024

from deepwave.

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.