This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S pixi run | |
| # /// script | |
| # requires-python = ">=3.12,<3.13" | |
| # dependencies = [] | |
| # | |
| # [tool.pixi.workspace] | |
| # channels = [ | |
| # "https://prefix.dev/isaac-forge", | |
| # "https://prefix.dev/robostack-jazzy", | |
| # "conda-forge", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run this with Pixi: | |
| # pixi run --script https://gist.github.com/ruben-arts/596390c215bdd7d2578e593b5309d68e/raw/c95c30398594ce53abc4761206eb5cead67995b9/python316.py | |
| # /// script | |
| # [tool.pixi.workspace] | |
| # channels = ["conda-forge"] | |
| # preview = true | |
| # | |
| # [tool.pixi.dependencies] | |
| # python.git = "https://github.com/python/cpython" | |
| # python.subdirectory = "Tools/pixi-packages" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [workspace] | |
| channels = ["conda-forge", "robostack-jazzy"] | |
| platforms = [{ name = "jetson-cuda12", platform = "linux-aarch64", cuda = "12", glibc = "2.35" }] | |
| [dependencies] | |
| pytorch = ">=2.11.0,<3" | |
| torchvision = ">=0.26.0,<0.27" | |
| lerobot = ">=0.6.0,<0.7" | |
| ros-jazzy-desktop = ">=0.11.0,<0.12" | |
| arm-variant = { build = "*tegra*" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [workspace] | |
| name = "jazzy_ws" | |
| channels = ["https://prefix.dev/robostack-jazzy", "https://prefix.dev/conda-forge"] | |
| platforms = ["linux-64", "win-64"] | |
| [dependencies] | |
| # Base ROS dependencies | |
| ros-jazzy-ros-base = ">=0.11.0,<0.12" | |
| pkg-config = ">=0.29.2,<0.30" | |
| compilers = ">=1.11.0,<2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 6 | |
| environments: | |
| default: | |
| channels: | |
| - url: https://conda.anaconda.org/conda-forge/ | |
| - url: https://conda.anaconda.org/robostack-jazzy/ | |
| options: | |
| pypi-prerelease-mode: if-necessary-or-explicit | |
| packages: | |
| linux-64: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 6 | |
| environments: | |
| default: | |
| channels: | |
| - url: https://conda.anaconda.org/conda-forge/ | |
| - url: https://conda.anaconda.org/robostack-jazzy/ | |
| options: | |
| pypi-prerelease-mode: if-necessary-or-explicit | |
| packages: | |
| linux-64: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S pixi exec -- python | |
| """ | |
| Calculate total size_in_bytes for paths with prefix_placeholder defined. | |
| These files are duplicated on disk (not hardlinked). | |
| """ | |
| import argparse | |
| import json | |
| from pathlib import Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [workspace] | |
| name = "deepspeed" | |
| platforms = ["linux-64"] | |
| channels = ["conda-forge", "bioconda"] | |
| preview = ["pixi-build"] | |
| [system-requirements] | |
| cuda = "13" | |
| [dependencies] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 6 | |
| environments: | |
| default: | |
| channels: | |
| - url: https://conda.anaconda.org/conda-forge/ | |
| options: | |
| pypi-prerelease-mode: if-necessary-or-explicit | |
| packages: | |
| linux-64: | |
| - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [workspace] | |
| channels = ["conda-forge"] | |
| platforms = ["osx-arm64", "linux-64", "win-64"] | |
| [dependencies] | |
| # C++ dependencies | |
| cxx-compiler = ">=1.11.0,<2" | |
| boost-cpp = ">=1.85.0,<2" | |
| cmake = ">=4.1.1,<5" |
NewerOlder