Skip to content
Snippets Groups Projects
Commit d5c24d0f authored by Martin Bauer's avatar Martin Bauer
Browse files

Fix: printing of double/float constants

- for example: sqrt(cast_func(3, double)) previously printed "sqrt(3)"
  instead of "sqrt(3.0)" leading to errors in CUDA code
parent 440866e2
Branches
Tags
No related merge requests found
from collections import namedtuple
from typing import Set
import numpy as np
import sympy as sp
from sympy.core import S
from sympy.printing.ccode import C89CodePrinter
......@@ -360,13 +361,10 @@ class CustomSympyPrinter(CCodePrinter):
def _typed_number(self, number, dtype):
res = self._print(number)
if dtype.is_float():
if dtype == self._float_type:
if '.' not in res:
res += ".0f"
else:
res += "f"
return res
if dtype.numpy_dtype == np.float32:
return res + '.0f' if '.' not in res else res + 'f'
elif dtype.numpy_dtype == np.float64:
return res + '.0' if '.' not in res else res
else:
return res
......
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