Skip to content
Snippets Groups Projects
Commit 07b49f8d authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

ISPC/CUDA targets: call superclass constructor

parent ccc0582d
No related branches found
No related tags found
No related merge requests found
......@@ -169,6 +169,8 @@ class CudaTarget(CTarget):
"""
self.extern_c = extern_c
super(CudaTarget, self).__init__()
# {{{ library
def function_manglers(self):
......
......@@ -62,6 +62,8 @@ class ISPCTarget(CTarget):
"""
self.occa_mode = occa_mode
super(ISPCTarget, self).__init__()
# {{{ top-level codegen
def generate_code(self, kernel, codegen_state, impl_arg_info):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment