From bea9d037bc741bdc04c2e9682bd2bcd3b39b9181 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 3 Apr 2025 08:50:21 +1000 Subject: [PATCH] experiment: add pins.json to repo The launcher will query this file to get the pins needed for installation --- pins.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pins.json diff --git a/pins.json b/pins.json new file mode 100644 index 0000000000..4b47f9ac5e --- /dev/null +++ b/pins.json @@ -0,0 +1,14 @@ +{ + "python": "3.12", + "torchIndexUrl": { + "win32": { + "cuda": "https://download.pytorch.org/whl/cu126" + }, + "linux": { + "cpu": "https://download.pytorch.org/whl/cpu", + "rocm": "https://download.pytorch.org/whl/rocm6.2.4", + "cuda": "https://download.pytorch.org/whl/cu126" + }, + "darwin": {} + } +}