[go: nahoru, domu]

Skip to content

Commit

Permalink
Add StableHLO v1.0 Compatibility Updates (#2342)
Browse files Browse the repository at this point in the history
Update compatibility.md to include the latest compatibility window for
StableHLO v1.0. Also include link on readme to StableHLO's on-device use
which utilizes these longer compatibility guarantees.
  • Loading branch information
GleasonK committed May 14, 2024
1 parent 8235e9e commit 797bee2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ between frameworks and compilers, even as StableHLO continues to evolve.

This repository includes the [StableHLO specification](docs/spec.md)
along with an MLIR-based implementation in C++ and Python, which you can use to
define StableHLO programs for consumption by compilers such as XLA and IREE.
define StableHLO programs for consumption by compilers such as XLA and IREE, as
well as on-device use via [Google AI Edge](https://github.com/google-ai-edge/).

## Build instructions

Expand Down
14 changes: 8 additions & 6 deletions docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,25 @@ that StableHLO provides, based on the process established in
The current version of StableHLO can be found in
[Version.h](https://github.com/openxla/stablehlo/blob/main/stablehlo/dialect/Version.h#:~:text=getCurrentVersion).

In the 0.x.x series, the minor version is bumped every time changes to
the StableHLO opset or
The minor version is bumped every time changes to the StableHLO opset or
[the StableHLO serialization format](bytecode.md) are made, and the patch
version is bumped every time we integrate StableHLO downstream, i.e. into the
openxla/xla repository.

## Guarantees

**6 months of backward compatibility:** Portable artifacts serialized by an old
Per the [StableHLO v1.0 Compatibility RFC](https://github.com/openxla/stablehlo/blob/main/rfcs/20230623-compatibility.md),
the compatibility window includes the following:

**5 years of backward compatibility:** Portable artifacts serialized by an old
version of libStablehlo have the same semantics* when deserialized by a new
version of libStablehlo if these versions are built from openxla/stablehlo
commits which are less than 6 months apart.
commits which are less than 5 years apart.

**1 month of forward compatibility:** Portable artifacts serialized by a new
**2 years of forward compatibility:** Portable artifacts serialized by a new
version of libStablehlo have the same semantics* when deserialized by an old
version of libStablehlo if these versions are built from openxla/stablehlo
commits which are less than 1 month apart, unless the program is using new
commits which are less than 2 years apart, unless the program is using new
features introduced since the old version.

\* StableHLO programs are converted to/from portable artifacts via
Expand Down

0 comments on commit 797bee2

Please sign in to comment.