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

Consider complex constants in C code mapper.

parent d1d9c01a
No related branches found
No related tags found
No related merge requests found
...@@ -4,13 +4,27 @@ from pymbolic.mapper.stringifier import SimplifyingSortingStringifyMapper ...@@ -4,13 +4,27 @@ from pymbolic.mapper.stringifier import SimplifyingSortingStringifyMapper
class CCodeMapper(SimplifyingSortingStringifyMapper): class CCodeMapper(SimplifyingSortingStringifyMapper):
def __init__(self, constant_mapper=repr, reverse=True, cse_prefix="_cse"): def __init__(self, constant_mapper=repr, reverse=True,
cse_prefix="_cse", complex_constant_base_type="double"):
SimplifyingSortingStringifyMapper.__init__(self, constant_mapper, reverse) SimplifyingSortingStringifyMapper.__init__(self, constant_mapper, reverse)
self.cse_prefix = cse_prefix self.cse_prefix = cse_prefix
self.cses = [] self.cses = []
self.cse_to_index = {} self.cse_to_index = {}
self.complex_constant_base_type = complex_constant_base_type
# mappings ---------------------------------------------------------------- # mappings ----------------------------------------------------------------
def map_constant(self, x, enclosing_prec):
import numpy
if isinstance(x, complex):
return "std::complex<%s>(%s, %s)" % (
complex_constant_base_type,
self.constant_mapper(x.real),
self.constant_mapper(x.imag))
else:
return SimplifyingSortingStringifyMapper.map_constant(
self, x, enclosing_prec)
def map_call(self, expr, enclosing_prec): def map_call(self, expr, enclosing_prec):
from pymbolic.primitives import Variable from pymbolic.primitives import Variable
from pymbolic.mapper.stringifier import PREC_NONE, PREC_CALL from pymbolic.mapper.stringifier import PREC_NONE, PREC_CALL
......
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