Spaces:
Build error
Build error
module.exports = { | |
run: [ | |
// windows nvidia | |
{ | |
"when": "{{platform === 'win32' && gpu === 'nvidia'}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121" | |
} | |
}, | |
// windows amd | |
{ | |
"when": "{{platform === 'win32' && gpu === 'amd'}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install torch-directml torchaudio torchvision" | |
} | |
}, | |
// windows cpu | |
{ | |
"when": "{{platform === 'win32' && (gpu !== 'nvidia' && gpu !== 'amd')}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu" | |
} | |
}, | |
// mac | |
{ | |
"when": "{{platform === 'darwin'}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu" | |
} | |
}, | |
// linux nvidia | |
{ | |
"when": "{{platform === 'linux' && gpu === 'nvidia'}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121" | |
} | |
}, | |
// linux rocm (amd) | |
{ | |
"when": "{{platform === 'linux' && gpu === 'amd'}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.1" | |
} | |
}, | |
// linux cpu | |
{ | |
"when": "{{platform === 'linux' && (gpu !== 'amd' && gpu !=='nvidia')}}", | |
"method": "shell.run", | |
"params": { | |
"venv": "{{args && args.venv ? args.venv : null}}", | |
"path": "{{args && args.path ? args.path : '.'}}", | |
"message": "pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu" | |
} | |
} | |
] | |
} | |