summaryrefslogtreecommitdiff
path: root/scripts/generator/datatype.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/generator/datatype.py')
-rw-r--r--scripts/generator/datatype.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/generator/datatype.py b/scripts/generator/datatype.py
index 0aa27197..9323bc4d 100644
--- a/scripts/generator/datatype.py
+++ b/scripts/generator/datatype.py
@@ -22,7 +22,8 @@ D2CL = "cl_double2"
# Structure holding data-type and precision information
class DataType():
- def __init__(self, name, template, scalars, buffertype):
+ def __init__(self, precision_name, name, template, scalars, buffertype):
+ self.precision_name = precision_name
self.name = name
self.template = template
self.alpha_cpp = scalars[0]