Skip to content
Closed
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 sumpy/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@
knl = lp.add_inames_for_unused_hw_axes(knl)

knl = lp.preprocess_kernel(knl)
return lp.linearize(knl)
return lp.linearize(knl).executor()

Check warning on line 936 in sumpy/tools.py

View workflow job for this annotation

GitHub Actions / basedpyright

Type of "executor" is partially unknown   Type of "executor" is "(..., entrypoint: str | None = None) -> ExecutorBase" (reportUnknownMemberType)


class FFTBackend(enum.Enum):
Expand Down
Loading