Metadata-Version: 2.4
Name: infragraph
Version: 1.0.0
Summary: Infrastructure as a Graph
Project-URL: Homepage, https://infragraph.dev/
Project-URL: Repository, https://github.com/Keysight/infragraph
Author-email: TBD <tbd@infragraph.org>
License: MIT
License-File: LICENSE
Keywords: astrasim,chakra,graph,infrastructure
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: grpcio
Requires-Dist: networkx
Requires-Dist: protobuf
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: semantic-version
Requires-Dist: typer
Description-Content-Type: text/markdown

[![PyPI](https://img.shields.io/pypi/v/infragraph)](https://pypi.org/project/infragraph/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/infragraph)](https://pypi.org/project/infragraph/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Documentation](https://img.shields.io/badge/docs-infragraph.dev-blue)](https://infragraph.dev)
[![GitHub issues](https://img.shields.io/github/issues/Keysight/infragraph)](https://github.com/Keysight/infragraph/issues)
[![GitHub stars](https://img.shields.io/github/stars/Keysight/infragraph)](https://github.com/Keysight/infragraph/stargazers)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/infragraph)](https://pypi.org/project/infragraph/)
[![CI/CD](https://github.com/Keysight/infragraph/actions/workflows/workflow.yml/badge.svg)](https://github.com/Keysight/infragraph/actions/workflows/workflow.yml)
[![GitHub last commit](https://img.shields.io/github/last-commit/Keysight/infragraph)](https://github.com/Keysight/infragraph/commits)
[![GitHub contributors](https://img.shields.io/github/contributors/Keysight/infragraph)](https://github.com/Keysight/infragraph/graphs/contributors)
[![GitHub repo size](https://img.shields.io/github/repo-size/Keysight/infragraph)](https://github.com/Keysight/infragraph)
[![GitHub Release](https://img.shields.io/github/v/release/Keysight/infragraph)](https://github.com/Keysight/infragraph/releases)

# InfraGraph (INFRAstructure GRAPH)

InfraGraph defines a [model-driven, vendor-neutral API](https://infragraph.dev/openapi.html) for capturing a system of systems suitable for use in co-designing AI/HPC solutions.

The model and API allows for defining physical infrastructure using a standardized graph like terminology.

In addition to the base graph definition, user provided `annotations` can `extend the graph` allowing for an unlimited number of different physical and/or logical characteristics/view.

Additional information such as background, schema and examples can be found in the [online documentation](https://infragraph.dev).

# Using InfraGraph CLI

InfraGraph ships with a CLI that lets you convert existing system descriptions into InfraGraph format and visualize infrastructure topologies.

Install using pip:

```bash
pip install infragraph
```

Or clone the repo and run `make clean && make install`, or download the `.whl` from [releases](https://github.com/Keysight/infragraph/releases) and install it with `pip install infragraph-<version>.whl`.

**Convert system formats to InfraGraph** — translate output from tools like `lstopo` directly into an InfraGraph YAML/JSON definition:

```bash
# Convert lstopo XML output to an InfraGraph YAML file
infragraph translate lstopo -i lstopo_output.xml -o my_device.yaml --dump yaml
```

**Visualize infrastructure topologies** — generate an interactive, drillable HTML visualization from any InfraGraph definition:

```bash
# Generate a visualization with host and switch hints
infragraph visualize -i my_infrastructure.yaml -o ./viz --hosts "dgx_a100" --switches "leaf_switch,spine_switch"
# Then open ./viz/index.html in a browser
```

The visualizer produces a multi-level view: a top-level graph of instances and inter-device connectivity, with drill-down into each device's internal components (xPUs, NICs, CPUs, memory, PCIe topology, etc.).

> **Note:** More converters and tools are _work-in-progress_. See the [Ecosystem documentation](docs/src/ecosystem.md) for the full roadmap and we invite contributions from the community.

# Chakra + InfraGraph Ecosystem

![Chakra + InfraGraph Ecosystem](docs/src/images/chakra-infragraph-ecosystem.png)

MLCommons [Chakra](https://mlcommons.org/working-groups/research/chakra/) captures AI workload details as Execution Traces — graphs of operators, tensors, dependencies, and timing. InfraGraph complements Chakra by representing the underlying infrastructure — hosts, NICs, xPUs/accelerators, interconnects, and topologies. Together, Chakra + InfraGraph let you pair workload traces with infrastructure blueprints to analyze current systems and co-design future ones, while safely sharing artifacts across teams and partners.

For more details, see the [Ecosystem documentation](docs/src/ecosystem.md).

# Versioning Rules

Infragraph follows a structured versioning scheme to maintain consistency across releases and ensure clear dependency management. Each version reflects compatibility, schema evolution, and API stability expectations.

For versioning rules, refer [this readme.](docs/src/version.md)

# Contributing

Contributions can be made in the following ways:
- [open an issue](https://github.com/keysight/infragraph/issues) in the repository
- [fork the models repository](https://github.com/keysight/infragraph) and submit a PR
