Skip to content

Release v3.1.0

Latest
Compare
Choose a tag to compare
@ScottTodd ScottTodd released this 08 Jan 21:56
3dbb4e5

Release highlights

iree-turbine core

The core of iree-turbine remains fairly stable, with a few quality of life and infrastructure changes this release cycle.

  • PyTorch is no longer a direct requirement that gets automatically installed alongside the iree-turbine package as of #343. Instead, users should install the torch package variant of their choice before importing from iree-turbine will succeed. For example:

    pip install torch --index-url https://download.pytorch.org/whl/test/cpu
    pip install iree-turbine
  • Pre-release versions of the iree-turbine package are now published nightly. Install with

    pip install \
      --find-links https://iree.dev/pip-release-links.html \
      --upgrade --pre \
      iree-turbine
    
  • Project tests are now running continuously across Python versions 3.10-3.12: #326.

  • A new turbine_generate rule is available for the iree.build API. This can be used to programmatically export and compile pipelines of programs using iree-turbine: #249.

TKW

Activity in the TKW (turbine/kernel/wave/) subproject has been accelerating.

Full changelog

v3.0.0...v3.1.0