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
Hi Does DeepSpeed 0.9.1 support PyTorch2.x+cud12 ? We want to run DeepSpeed with torch on H100GPU with 12.1, we try to use nightly build torch2.1.0+cu121 and build DeepSpeed wheel, however we see the following error
/opt/bb/lib/python3.8/site-packages/torch/include/torch/csrc/api/include/torch/all.h:4:2: error: #error C++17 or later compatible compiler is required to use PyTorch.
4 | #error C++17 or later compatible compiler is required to use PyTorch.
| ^~~~~
we use gcc from devtools-12 which can compile C++17 code. I think the issue comes from -std=c++14, when I run
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Does DeepSpeed 0.9.1 support PyTorch2.x+cud12 ? We want to run DeepSpeed with torch on H100GPU with 12.1, we try to use nightly build torch2.1.0+cu121 and build DeepSpeed wheel, however we see the following error
we use gcc from devtools-12 which can compile C++17 code. I think the issue comes from
-std=c++14
, when I runHow could I override
-std=c++14
withstd=c++17
?Beta Was this translation helpful? Give feedback.
All reactions