Earlier quoted context omitted.
Had a poweredge in my apartment in college, can confirm they sound like a leaf blower.
Ha, isn't that what basements are for these days?
Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
41–49 of 49 posts
Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#42Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#43Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#44Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#45Multi-GPU training is a double-edged sword. If you are at the stage where you are running your code in a iPython notebook then you are almost certainly not going to benefit from the multiple GPUs, and I strongly suspect you'd be better with fewer and larger GPUs, even if training time is prolonged. The reason I say that is, if we go with PyTorch, you basically have 2 options for multi-GPU training. - DataParallel - w…
DistributedDataParallel (potentially) does both model and data parallelism. Data parallelism is also absolutely used when training large models, it has its downsides, but I don't think there's any way around it if you're training with a large amount of gpus.
Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#46Earlier quoted context omitted.
DistributedDataParallel (potentially) does both model and data parallelism. Data parallelism is also absolutely used when training large models, it has its downsides, but I don't think there's any way around it if you're training with a large amount of gpus.
How does DDP do model parallel?
Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#47Earlier quoted context omitted.
How does DDP do model parallel?
I phrased that wrongly, DDP itself doesn't of course. I meant that using it in the way GP does is also doing model parallelism.
Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#48Re: Ask HN: Worth it to buy 4x Nvidia Tesla K40 for AI?
#49Earlier quoted context omitted.
I phrased that wrongly, DDP itself doesn't of course. I meant that using it in the way GP does is also doing model parallelism.
I don’t see any mention of model parallel in GP post. How could you possibly use DDP to enable it?