aiconfigurator

(β˜… 420)

Offline optimization of your disaggregated Dynamo graph

Showing a partial file list β€” download the zip above to see everything.

  • .coderabbit.yaml
  • .dockerignore
  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • AGENTS.md
  • ATTRIBUTIONS.md
  • Cargo.toml
  • CODE_OF_CONDUCT.md
  • CODEOWNERS
  • CONTRIBUTING.md
  • CONTRIBUTORS.md
  • DEVELOPMENT.md
  • LICENSE
  • README.md
  • SECURITY.md

# Installation Guide

1. Get the code
git clone https://github.com/ai-dynamo/aiconfigurator

Downloads the entire project code from GitHub to your computer.

cd aiconfigurator

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Python 3 Python is required to use pip.
pip3 install aiconfigurator

Installs the package published on PyPI directly β€” no need to clone the source.

pip3 install ./aic-core

Installs the package published on PyPI directly β€” no need to clone the source.

pip3 install .

Installs the package published on PyPI directly β€” no need to clone the source.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip3 install aiconfigurator

Installs the package published on PyPI directly β€” no need to clone the source.

python3 -m pip uninstall -y aiconfigurator aiconfigurator-core

Runs the Python script (or module).

python3 -m pip install 'aiconfigurator==0.11.0'

Installs the Python libraries listed in requirements.txt (or similar).

python3 -m pip install --force-reinstall --no-deps 'aiconfigurator-core==0.11.0'

Installs the Python libraries listed in requirements.txt (or similar).

python3 -m venv myenv && source myenv/bin/activate # (requires Python 3.11-3.13)

Runs the Python script (or module).

βœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

4. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo build --release

Compiles the Rust project.

cargo run

Builds and then immediately runs the program.

βœ… If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation