"vscode:/vscode.git/clone" did not exist on "5fe90e22bc33f8d69fa1106202f992cb98d29675"
Commit 399d1a10 authored by Yan Yan's avatar Yan Yan
Browse files

debug strange problem in windows CUDA 11.4

parent e9b32261
...@@ -48,9 +48,8 @@ jobs: ...@@ -48,9 +48,8 @@ jobs:
$Env:CUMM_CUDA_ARCH_LIST = "all" $Env:CUMM_CUDA_ARCH_LIST = "all"
$Env:SPCONV_DISABLE_JIT = "1" $Env:SPCONV_DISABLE_JIT = "1"
pip install pccm pybind11 pip install pccm pybind11
git clone -b cuda-$CUMM_CUDA_VERSION --depth 1 https://github.com/NVIDIA/thrust git clone -b cuda-$CUMM_CUDA_VERSION https://github.com/NVIDIA/thrust $HOME/thrust_git
$CURRENT_DIR = (Get-Location).path $Env:CUMM_THRUST_INCLUDE = "$HOME/thrust_git"
$Env:CUMM_THRUST_INCLUDE = "$CURRENT_DIR\thrust"
python -m build --wheel --outdir dist/ . python -m build --wheel --outdir dist/ .
shell: powershell shell: powershell
......
[build-system] [build-system]
requires = ["setuptools>=41.0", "wheel", "pccm>=0.2.15", "cumm>=0.1.8"] requires = ["setuptools>=41.0", "wheel", "pccm>=0.2.15", "cumm>=0.1.9"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
...@@ -162,7 +162,8 @@ if disable_jit is not None and disable_jit == "1": ...@@ -162,7 +162,8 @@ if disable_jit is not None and disable_jit == "1":
objects_folder="objects", objects_folder="objects",
std=std, std=std,
disable_pch=True, disable_pch=True,
verbose=True) verbose=True,
debug_file_gen=True)
] ]
else: else:
cmdclass = { cmdclass = {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment