Skip to content
Snippets Groups Projects
Commit 256eb97c authored by Markus Holzer's avatar Markus Holzer
Browse files

removed further peaces

parent 24117a47
No related branches found
No related tags found
1 merge request!278Removed OpenCL
......@@ -4,3 +4,4 @@
### Removed
* LLVM backend because it was not used much and not good integrated in pystencils.
* OpenCL backend because it was not used much and not good integrated in pystencils.
This diff is collapsed.
......@@ -46,7 +46,7 @@ def get_code_obj(ast: Union[KernelFunction, KernelWrapper], custom_backend=None)
if isinstance(ast, KernelWrapper):
ast = ast.ast
if ast.backend not in {Backend.C, Backend.CUDA, Backend.OPENCL}:
if ast.backend not in {Backend.C, Backend.CUDA}:
raise NotImplementedError(f'get_code_obj is not implemented for backend {ast.backend}')
dialect = ast.backend
......
import functools
import itertools
import warnings
from dataclasses import dataclass, field
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment