Skip to content

v0.7.0

Choose a tag to compare

@github-actions github-actions released this 07 Jul 13:11
· 71 commits to main since this release

API changes

This version contains an API change to the kernelize function that makes it possible to use different kernels for inference/training/torch.compile. This requires a small adjustment to how kernelize is called, see the kernelize documentation for more information. In short, to kernelize a model for inference, use:

model = MyModel(...)
model = kernelize(model, mode=Mode.INFERENCE)

For training:

model = MyModel(...)
model = kernelize(model, mode=Mode.TRAINING)

What's Changed

Full Changelog: v0.6.2...v0.7.0