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
I have literally everything setup. The compile did run like 20 minute or more
However failed later
Now as a Microsoft you are forcing us to use DeepSpeed on Linux is ridiculous if you ask anyone opinions
So i got build tools totally installed - 2022
I got python 3.10.11 and CUDA 12.4 installed
The first error is that you have to fix setup.py git path since it works only on Linux. I did that
# Write out version/git info.
git_hash_cmd = ["git", "rev-parse", "--short", "HEAD"]
git_branch_cmd = ["git", "rev-parse", "--abbrev-ref", "HEAD"]
if command_exists('git') and not is_env_set('DS_BUILD_STRING'):
try:
result = subprocess.check_output(git_hash_cmd, shell=True)
git_hash = result.decode('utf-8').strip()
result = subprocess.check_output(git_branch_cmd, shell=True)
git_branch = result.decode('utf-8').strip()
except subprocess.CalledProcessError:
git_hash = "unknown"
git_branch = "unknown"
else:
git_hash = "unknown"
git_branch = "unknown"
After that compile starts
And finally compile ends with below error
cl : Command line warning D9025 : overriding '/D__CUDA_NO_HALF2_OPERATORS__' with '/U__CUDA_NO_HALF2_OPERATORS__'
slice_attn_masks.cu
tmpxft_0000b2e4_00000000-7_slice_attn_masks.compute_90.cudafe1.cpp
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4\include\cuda_fp16.hpp(992): fatal error C1001: Internal compiler error.
(compiler file 'D:\a\_work\1\s\src\vctools\Compiler\CxxFE\sl\p1\c\token_io.cpp', line 2687)
To work around this problem, try simplifying or changing the program near the locations listed above.
If possible please provide a repro here: https://developercommunity.visualstudio.com
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
error: command 'C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.4\\bin\\nvcc.exe' failed with exit code 4294967295
I have the below pip freeze so you are going to either start publishing pre compiled up to date wheels for Windows or fix your script to run on Windows?
Hi @FurkanGozukara - we are working on getting Windows support added back in, and wheels published (and automated) again soon.
In the meantime, are you able to identify which deepspeed op is causing the nvcc internal error and confirm if that is the only problem you are hitting/confirm that nvcc is able to properly compile other files?
hi @loadams . i am able to compile some other apps like InsightFace, XPose, UniPose maybe some other 3d related libraries recently i tried like using microsoft/TRELLIS
i really don't know what causes error here entire logs
thank you so much i hope you make automated wheel releases for Windows
I need compile DeepSpeed for Python 3.10
I have literally everything setup. The compile did run like 20 minute or more
However failed later
Now as a Microsoft you are forcing us to use DeepSpeed on Linux is ridiculous if you ask anyone opinions
So i got build tools totally installed - 2022
I got python 3.10.11 and CUDA 12.4 installed
The first error is that you have to fix setup.py git path since it works only on Linux. I did that
After that compile starts
And finally compile ends with below error
And still with below attached full logs it failed
entire.logs.txt
I have the below pip freeze so you are going to either start publishing pre compiled up to date wheels for Windows or fix your script to run on Windows?
The text was updated successfully, but these errors were encountered: