Skip to content
Snippets Groups Projects
ref_other.rst 1.91 KiB

Reference: Other Functionality

Auxiliary Data Types

Obtaining Kernel Performance Statistics

Controlling caching

Running Kernels

Use :class:`TranslationUnit.executor` to bind a translation unit to execution resources, and then use :class:`ExecutorBase.__call__` to invoke the kernel.

Automatic Testing

Troubleshooting

Printing :class:`LoopKernel` objects

If you're confused about things loopy is referring to in an error message or about the current state of the :class:`LoopKernel` you are transforming, the following always works:

print(kernel)

(And it yields a human-readable--albeit terse--representation of kernel.)