Skip to content
Snippets Groups Projects

Fundamental GPU Support

Merged Frederik Hennig requested to merge fhennig/sycl into backend-rework
Compare and Show latest version
8 files
+ 83
37
Preferences
Compare changes
Files
8
@@ -27,14 +27,9 @@ Both are available here through `LegacyCpuJit` and `LegacyGpuJit`.
"""
from .jit import JitBase, NoJit, LegacyCpuJit, LegacyGpuJit
from .gpu_cupy import CupyJit
no_jit = NoJit()
"""Disables just-in-time compilation for a kernel."""
__all__ = [
"JitBase",
"LegacyCpuJit",
"NoJit",
"no_jit",
"LegacyGpuJit",
]
__all__ = ["JitBase", "LegacyCpuJit", "NoJit", "no_jit", "LegacyGpuJit", "CupyJit"]