You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the awesome work on this lib! Just wanted to ask what the recommended way is to clean up a loaded model that has been parallelized using this library. What method should be called to clean up all the resources, move data out of the GPU, empty cuda cache and shut down the master process?
Tried to run this but it hanged:
model= ...
p=parallelize(
model,
num_gpus=2,
fp16=True,
verbose="simple",
)
# Do some inferencep.deparallelize() # --> This hanged
The text was updated successfully, but these errors were encountered:
Hi there!
Thanks for the awesome work on this lib! Just wanted to ask what the recommended way is to clean up a loaded model that has been
parallelize
d using this library. What method should be called to clean up all the resources, move data out of the GPU, empty cuda cache and shut down the master process?Tried to run this but it hanged:
The text was updated successfully, but these errors were encountered: