Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/xtc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, macos-15]
os: [ubuntu-latest, ubuntu-24.04-arm, macos-14, macos-15]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps: &build-steps
- name: Checkout XTC Repository
Expand Down Expand Up @@ -100,6 +100,6 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-15]
os: [ubuntu-latest, ubuntu-24.04-arm, macos-15]
python-version: ["3.12"]
steps: *build-steps
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ XTC is a domain-specific dataflow graph compiler for linear algebra operations.

If needed, install uv following the instructions [here](https://docs.astral.sh/uv/).

Debian-like x86_64 Linux distributions (Python: 3.10 to 3.14 inclusive):
Debian-like x86_64 or aarch64 Linux distributions (Python: 3.10 to 3.14 inclusive):
```bash
sudo apt install python3 python3-dev build-essential libomp5 binutils binutils-aarch64-linux-gnu binutils-x86-64-linux-gnu
sudo apt install libpfm4-dev # Optional: interface to Linux perf counters
Expand Down
10 changes: 5 additions & 5 deletions dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ dependencies = [
[groups.llvm]
publish = false
dependencies = [
'xtc-llvm-tools==22.1.8.1',
'xtc-llvm-tools==22.1.8.2',
]

[groups.mlir]
include = ["llvm"]
dependencies = [
'xtc-mlir-tools==22.1.8.2',
'xtc-mlir-python-bindings==22.1.8.2',
'xtc-mlir-extra-tools==22.1.8.6',
'xtc-mlir-tools==22.1.8.3',
'xtc-mlir-python-bindings==22.1.8.3',
'xtc-mlir-extra-tools==22.1.8.7',
]

[groups.tvm]
include = ["llvm"]
dependencies = [
'xtc-tvm-python-bindings==0.19.0.11',
'xtc-tvm-python-bindings==0.19.0.12',
]
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ dependencies = [
]

[project.optional-dependencies]
default = ['xtc-llvm-tools==22.1.8.1', 'xtc-mlir-tools==22.1.8.2', 'xtc-mlir-python-bindings==22.1.8.2', 'xtc-mlir-extra-tools==22.1.8.6', 'xtc-tvm-python-bindings==0.19.0.11']
dev = ['xtc-llvm-tools==22.1.8.1', 'xtc-mlir-tools==22.1.8.2', 'xtc-mlir-python-bindings==22.1.8.2', 'xtc-mlir-extra-tools==22.1.8.6', 'xtc-tvm-python-bindings==0.19.0.11', "coverage>=7.8.0", "filecheck", "lit", "mkdocs", "mkdocs-material", "mkdocstrings-python", "mypy==1.15.0", "pytest", "pytest-xdist", "pyright==1.1.407", "types-PyYAML", "marimo==0.19.6", "ruff==0.14.10"]
default = ['xtc-llvm-tools==22.1.8.2', 'xtc-mlir-tools==22.1.8.3', 'xtc-mlir-python-bindings==22.1.8.3', 'xtc-mlir-extra-tools==22.1.8.7', 'xtc-tvm-python-bindings==0.19.0.12']
dev = ['xtc-llvm-tools==22.1.8.2', 'xtc-mlir-tools==22.1.8.3', 'xtc-mlir-python-bindings==22.1.8.3', 'xtc-mlir-extra-tools==22.1.8.7', 'xtc-tvm-python-bindings==0.19.0.12', "coverage>=7.8.0", "filecheck", "lit", "mkdocs", "mkdocs-material", "mkdocstrings-python", "mypy==1.15.0", "pytest", "pytest-xdist", "pyright==1.1.407", "types-PyYAML", "marimo==0.19.6", "ruff==0.14.10"]
test = ["coverage>=7.8.0", "filecheck", "lit", "mkdocs", "mkdocs-material", "mkdocstrings-python", "mypy==1.15.0", "pytest", "pytest-xdist", "pyright==1.1.407", "types-PyYAML", "marimo==0.19.6", "ruff==0.14.10"]
mlir = ['xtc-llvm-tools==22.1.8.1', 'xtc-mlir-tools==22.1.8.2', 'xtc-mlir-python-bindings==22.1.8.2', 'xtc-mlir-extra-tools==22.1.8.6']
tvm = ['xtc-llvm-tools==22.1.8.1', 'xtc-tvm-python-bindings==0.19.0.11']
mlir = ['xtc-llvm-tools==22.1.8.2', 'xtc-mlir-tools==22.1.8.3', 'xtc-mlir-python-bindings==22.1.8.3', 'xtc-mlir-extra-tools==22.1.8.7']
tvm = ['xtc-llvm-tools==22.1.8.2', 'xtc-tvm-python-bindings==0.19.0.12']

[tool.setuptools]
platforms = ["Linux"]
Expand Down
Loading