Skip to content
Snippets Groups Projects
Commit 10df2868 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

set SYCL default JIT to no_ijt

parent 72bd2049
No related branches found
No related tags found
1 merge request!384Fundamental GPU Support
......@@ -196,6 +196,9 @@ class CreateKernelConfig:
if self.target.is_cpu():
from .backend.jit import LegacyCpuJit
self.jit = LegacyCpuJit()
elif self.target == Target.SYCL:
from .backend.jit import no_jit
self.jit = no_jit
else:
raise NotImplementedError(
f"No default JIT compiler implemented yet for target {self.target}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment