summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java')
-rw-r--r--src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java b/src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java
index 31fabab..1daf890 100644
--- a/src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java
+++ b/src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java
@@ -37,7 +37,7 @@ public class HelloJOCL {
CLBuffer<FloatBuffer> clBufferC = context.createFloatBuffer(globalWorkSize, WRITE_ONLY);
out.println("used device memory: "
- + (clBufferA.getSize()+clBufferB.getSize()+clBufferC.getSize())/1000000 +"MB");
+ + (clBufferA.getCLSize()+clBufferB.getCLSize()+clBufferC.getCLSize())/1000000 +"MB");
// fill read buffers with random numbers (just to have test data; seed is fixed -> results will not change between runs).
fillBuffer(clBufferA.getBuffer(), 12345);