-
Notifications
You must be signed in to change notification settings - Fork 260
/
build_config.yaml
34 lines (29 loc) · 1.26 KB
/
build_config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
repo_id: "MrForExample/Comfy3D_Pre_Builds"
supported_cuda_versions: ["12.4", "12.1", "11.8"]
cuda_version: "12.4"
# Packages inside this file will be pip downloaded before actual build start
build_requirements: "build_requirements.txt"
# Dependencies to build wheels from
dependencies: "dependencies.txt"
# Folder used to store `git clone` project files from dependencies
dependencies_dir_name: "_Build_Dependencies"
# Folder used to store library files download from remote
libs_dir_name: "_Libs"
# Folder used to store built wheels
wheels_dir_name: "_Build_Wheels"
build_base_packages: ["torch", "torchvision", "xformers", "spconv-${cuda_version}"]
# All packages will be automatically installed at beginning of install.py follwing orders from top to bottom
remote_packages:
torch:
version: "2.5.1"
url: "https://download.pytorch.org/whl/${cuda_version}"
torchvision:
version: "0.20.1"
url: "https://download.pytorch.org/whl/${cuda_version}"
xformers:
version: "0.0.28.post3"
url: "https://download.pytorch.org/whl/${cuda_version}"
# At the time of writing, torch-scatter is not available for PyTorch 2.5.0
#torch-scatter:
# url_option: "--find-links"
# url: "https://data.pyg.org/whl/torch-${remote_packages.torch.version}+${cuda_version}.html"