Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

xqffi -- PyO3 FFI bindings for the XQuad Rust runtime

The Python extension that exposes the Rust xqvm interpreter and xqasm assembler. Ships as abi3 manylinux wheels (x86_64 + aarch64, CPython >= 3.13) plus a universal sdist for other platforms, all built by maturin.

xqffi is a pure FFI shim -- it only re-exposes the Rust types and entry points. User-facing conveniences (Program / Session / RunResult, keyword calldata, trace inspection) live in the xquad umbrella package.

Install

pip install xqffi

Surface

xqffi.vm -- low-level one-shot

What the conformance harness drives. Small wrapper over xqvm::Vm:

from xqffi.vm import Vm
from xqffi.asm import assemble_source

vm = Vm()
vm.set_calldata([40, 2])
vm.set_output_slots(1)
vm.run(assemble_source(src))
assert vm.outputs() == [42]

XqmxModel and XqmxSample are thin getter/setter wrappers around the Rust types for direct model/sample manipulation.

xqffi.asm -- assembly

parse_xqasm(str) -> wire dict; assemble_source(str) -> raw bytes; disassemble(bytes) -> human-readable listing; instruction_count(bytes) -> instruction count.

xqffi.verifier -- static verification

verify(bytes) and verify_source(str) run the pre-execution verifier: every jump lands on a TARGET, every register is read after it is written, and stack depth balances. Both return None on success and raise ValueError on a rejected program. See Verifier.

Interactive / multi-run API

Use xquad.program for the REPL / notebook / script workflow:

from xquad.program import Program

program = Program.from_source(src)
session = program.session(output_slots=1)
session.set_calldata([40, 2])
result = session.run()
assert dict(result.outputs) == {0: 42}

Program.load(bytes) takes wire-format bytecode; Session.run() returns a RunResult with dict-keyed outputs (unset slots present as None), residual stack, and step count.

Also see

  • xqvm_py -- pure-Python reference VM (conformance oracle).
  • xqcp -- constraint programming DSL that compiles to .xqasm.
  • xqsa -- solver adapters: CPU/GPU annealers, D-Wave QPU, Quip network.
  • xquad -- umbrella meta-package with the interactive API.
  • Running Programs -- full tour.

License

AGPL-3.0-or-later.

Release files for xqffi 0.4.0rc2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for xqffi 0.4.0rc2
File Size Uploaded
xqffi-0.4.0rc2.tar.gz 216.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for xqffi 0.4.0rc2
File Interpreter ABI Platform
xqffi-0.4.0rc2-cp313-abi3-manylinux_2_34_x86_64.whl CPython 3.13 abi3 Linux glibc 2.34+ x86-64 Details
xqffi-0.4.0rc2-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 abi3 Linux glibc 2.17+ ARM64 Details

Total release size: 1.1 MB

Release files / xqffi-0.4.0rc2.tar.gz

Download URL xqffi-0.4.0rc2.tar.gz
Size 216.4 kB
Tags Source
SHA-256 checksum
How to use checksums
a63051583dac1beb44218013fb218c15398af472d3df2fd847adfe840012eb39
BLAKE2b-256 checksum
How to use checksums
af11375f4844d898e4f31ac0242cf2d403828467e84be759fa0823e38f168810
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.5

Release files / xqffi-0.4.0rc2-cp313-abi3-manylinux_2_34_x86_64.whl

Download URL xqffi-0.4.0rc2-cp313-abi3-manylinux_2_34_x86_64.whl
Size 449.8 kB
Tags CPython 3.13 Linux glibc 2.34+ x86-64 abi3
SHA-256 checksum
How to use checksums
98cab9815cf429df8b5940b8dd4ee03f73b9766b437e77a3d276210200a37b70
BLAKE2b-256 checksum
How to use checksums
364d9947cee635a06ad1cced6cda7feb51bdb6db96a6662a6c67bf9cad7c4874
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.5

Release files / xqffi-0.4.0rc2-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL xqffi-0.4.0rc2-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 438.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
bc48649e1759d0aba3b70568fc8c0aefaf63c887580ccd7e188ea6c1e44dcde0
BLAKE2b-256 checksum
How to use checksums
c6e9087b5895410da09ac1e2e517616600811b782f7b6820f5456c59fc0e6ff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.5

Release history Release notifications | RSS feed

0.4.0

3 release files

This release

0.4.0rc2 This release

3 release files

0.3.2

3 release files

0.3.1

3 release files

0.3.0

3 release files

0.2.1

1 release file

0.2.0

2 release files

0.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page