-
- Downloads
Refactor argument passing
- Refactor argument passing so that instead of implicitly-spawned `ImplementedDataInfo` objects, there are actual arguments (for automatic offsets and strides, base storage, and `sep`-tagged arrays). It also centralizes the logic for what goes into argument lists, instead of having various "filtered" versions scattered about. - Get started on type-annotating a bit of loopy. - Switch a not-small number of data structures to be dataclasses, notably `LoopKernel`. - Drop OCCA support from the ISPC target. (I'm not aware of any users, ever.) - Drop the Numba target outright. (I'm not aware of any users, ever.) - Drop `LoopKernel.local_sizes`, which was usable to directly set the workgroup size. (I'm not aware of any users, ever.) - Expire the deprecation for `iname_to_tags`. - Bumps the Python compatibility target to 3.8, for `from __future__ import annotations` and `cached_property` (mypy does not support nested decorators) - Bug fix: `tags` was not part of `LoopKernel.hash_fields` - Bug fix: `InstructionBase.get_write_dependency_names()` was used to find written variables, `InstructionBase.assignee_var_names()` is correct - Bug fix: KernelExecutorBase now uses linearize() so as to not bypass pre-linearization checks (cf. gh-639)
Showing
- .github/workflows/ci.yml 14 additions, 1 deletion.github/workflows/ci.yml
- .gitlab-ci.yml 12 additions, 0 deletions.gitlab-ci.yml
- doc/conf.py 19 additions, 0 deletionsdoc/conf.py
- doc/ref_kernel.rst 0 additions, 10 deletionsdoc/ref_kernel.rst
- doc/ref_transform.rst 2 additions, 0 deletionsdoc/ref_transform.rst
- doc/tutorial.rst 9 additions, 9 deletionsdoc/tutorial.rst
- loopy/__init__.py 11 additions, 9 deletionsloopy/__init__.py
- loopy/auto_test.py 52 additions, 47 deletionsloopy/auto_test.py
- loopy/check.py 168 additions, 21 deletionsloopy/check.py
- loopy/cli.py 1 addition, 1 deletionloopy/cli.py
- loopy/codegen/__init__.py 104 additions, 256 deletionsloopy/codegen/__init__.py
- loopy/codegen/control.py 5 additions, 42 deletionsloopy/codegen/control.py
- loopy/codegen/result.py 33 additions, 16 deletionsloopy/codegen/result.py
- loopy/codegen/tools.py 7 additions, 9 deletionsloopy/codegen/tools.py
- loopy/kernel/__init__.py 193 additions, 415 deletionsloopy/kernel/__init__.py
- loopy/kernel/array.py 121 additions, 227 deletionsloopy/kernel/array.py
- loopy/kernel/creation.py 22 additions, 0 deletionsloopy/kernel/creation.py
- loopy/kernel/data.py 149 additions, 80 deletionsloopy/kernel/data.py
- loopy/kernel/function_interface.py 4 additions, 1 deletionloopy/kernel/function_interface.py
- loopy/kernel/instruction.py 6 additions, 4 deletionsloopy/kernel/instruction.py
Loading
Please register or sign in to comment