Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
YanWenKun committed Oct 31, 2024
1 parent d6b213c commit 06d4d2a
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions docs/compiling-wheels-for-comfy3d.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ The steps are basically ported from:
[source,cmd]
----
python_embeded\python.exe -s -m pip install ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/pointnet2_ops-3.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/simple_knn-0.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/diff_gaussian_rasterization-0.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/kiui-0.2.14-py3-none-any.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/nvdiffrast-0.3.3-py3-none-any.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/torch_scatter-2.1.2-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v5.3-wheels/pytorch3d-0.7.8-cp312-cp312-win_amd64.whl
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/pointnet2_ops-3.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/simple_knn-0.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/diff_gaussian_rasterization-0.0.0-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/kiui-0.2.14-py3-none-any.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/nvdiffrast-0.3.3-py3-none-any.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/torch_scatter-2.1.2-cp312-cp312-win_amd64.whl ^
https://github.com/YanWenKun/ComfyUI-Windows-Portable/releases/download/v6.2-wheels/pytorch3d-0.7.8-cp312-cp312-win_amd64.whl
----


Expand Down Expand Up @@ -174,42 +174,42 @@ cd $workdir
----
#### 3.5 Compile pytorch_scatter
#### 3.5 Compile pytorch3d
`pytorch_scatter` takes more time to build.
`pytorch3d` takes more time to build.
If the CUDA version is in-compatible, it will throw errors not at the beginning, but more likely at the ending phase.
[source,bash]
----
pip_exe wheel -w $wheeldir \
git+https://github.com/rusty1s/pytorch_scatter.git
git+https://github.com/facebookresearch/pytorch3d.git
----
If failed to build latest `pytorch_scatter`, try its stable version:
If failed to build latest `pytorch3d`, try its stable version:
[source,bash]
----
pip_exe wheel -w $wheeldir \
torch-scatter
git+https://github.com/facebookresearch/pytorch3d.git@stable
----
#### 3.6 Compile pytorch3d
#### 3.6 Compile pytorch_scatter
`pytorch3d` takes even more time to build.
If the CUDA version is in-compatible, it will throw errors not at the beginning, but more likely at the ending phase.
`pytorch_scatter` takes even more time to build.
[source,bash]
----
pip_exe wheel -w $wheeldir \
git+https://github.com/facebookresearch/pytorch3d.git
git+https://github.com/rusty1s/pytorch_scatter.git
----
If failed to build latest `pytorch3d`, try its stable version:
If failed to build latest `pytorch_scatter`, try its stable version:
[source,bash]
----
pip_exe wheel -w $wheeldir \
git+https://github.com/facebookresearch/pytorch3d.git@stable
torch-scatter
----
### 4. Copy wheels
Expand Down

0 comments on commit 06d4d2a

Please sign in to comment.