summaryrefslogtreecommitdiff
path: root/src/kernels/level2/xher.opencl
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernels/level2/xher.opencl')
-rw-r--r--src/kernels/level2/xher.opencl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernels/level2/xher.opencl b/src/kernels/level2/xher.opencl
index 13bc4135..edb94ca8 100644
--- a/src/kernels/level2/xher.opencl
+++ b/src/kernels/level2/xher.opencl
@@ -59,7 +59,7 @@ __kernel void Xher(const int n, const real alpha,
// Loads A, performs the operation, and stores the result into A
else {
- MatrixUpdate(id1, id2, n, n, agm, a_offset, a_ld, alpha, xvalues[w2], xtvalues[w1]);
+ MatrixUpdate(id1, id2, n, n, agm, a_offset, a_ld, alpha, xvalues[w2], xtvalues[w1], is_upper);
}
}
}