Skip to content
Snippets Groups Projects
Commit abfa7d64 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Avoid CUDA intrinsics in OpenCL / Mark some methods as not implemented

parent 38463a9b
No related merge requests found
import pystencils.data_types import pystencils.data_types
from pystencils.astnodes import Node from pystencils.astnodes import Node
from pystencils.backends.cbackend import generate_c from pystencils.backends.cbackend import CustomSympyPrinter, generate_c
from pystencils.backends.cuda_backend import CudaBackend, CudaSympyPrinter from pystencils.backends.cuda_backend import CudaBackend, CudaSympyPrinter
...@@ -35,6 +35,12 @@ class OpenClBackend(CudaBackend): ...@@ -35,6 +35,12 @@ class OpenClBackend(CudaBackend):
else: else:
return code return code
def _print_ThreadBlockSynchronization(self, node):
raise NotImplementedError()
def _print_TextureDeclaration(self, node):
raise NotImplementedError()
class OpenClSympyPrinter(CudaSympyPrinter): class OpenClSympyPrinter(CudaSympyPrinter):
language = "OpenCL" language = "OpenCL"
...@@ -57,3 +63,9 @@ class OpenClSympyPrinter(CudaSympyPrinter): ...@@ -57,3 +63,9 @@ class OpenClSympyPrinter(CudaSympyPrinter):
dimension = self.DIMENSION_MAPPING[dimension] dimension = self.DIMENSION_MAPPING[dimension]
function_name = self.INDEXING_FUNCTION_MAPPING[function_name] function_name = self.INDEXING_FUNCTION_MAPPING[function_name]
return f"{function_name}({dimension})" return f"{function_name}({dimension})"
def _print_TextureAccess(self, node):
raise NotImplementedError()
# Avoid usage of CUDA intrinsics
_print_Function = CustomSympyPrinter._print_Function
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment