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

Small fix

parent 424a20ea
No related branches found
No related tags found
No related merge requests found
Pipeline #32524 passed
...@@ -83,7 +83,7 @@ class OpenClSympyPrinter(CudaSympyPrinter): ...@@ -83,7 +83,7 @@ class OpenClSympyPrinter(CudaSympyPrinter):
function_name, dimension = tuple(symbol_name.split(".")) function_name, dimension = tuple(symbol_name.split("."))
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"(int) {function_name}({dimension})" return f"(int64_t) {function_name}({dimension})"
def _print_TextureAccess(self, node): def _print_TextureAccess(self, node):
raise NotImplementedError() raise NotImplementedError()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment