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
2 changes: 1 addition & 1 deletion docs/source/kernel-requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ have dynamic library dependencies outside:
- CXXABI 1.3.11
- GCC 7.0.0

These requirement can be checked with the ABI checker (see below).
These requirements can be checked with the ABI checker (see below).

### macOS

Expand Down
4 changes: 2 additions & 2 deletions docs/source/layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ the Hub can replace the `forward` method of an existing layer for a certain
device type. This makes it possible to provide more performant kernels for
existing layers.

See [Kernel requirements](kernel-requirements.md) for more information the
See [Kernel requirements](kernel-requirements.md) for more information on the
requirements of Hub layers.

## Making a layer extensible with kernels from the hub
Expand Down Expand Up @@ -117,7 +117,7 @@ model = kernelize(model, mode=Mode.INFERENCE | Mode.TORCH_COMPILE, use_fallback=

This can be useful if you want to guarantee that Hub kernels are used.

### Inspecting kernels which kernels are used
### Inspecting which kernels are used

The kernels that are used are logged at the `INFO` level by `kernelize`.
See the [Python logging](https://docs.python.org/3/library/logging.html)
Expand Down
Loading