summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/com')
-rw-r--r--src/com/jogamp/opencl/demos/hellojocl/HelloJOCL.java2
-rw-r--r--src/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java2
2 files changed, 2 insertions, 2 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);
diff --git a/src/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java b/src/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java
index 2ce429a..8650be2 100644
--- a/src/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java
+++ b/src/com/jogamp/opencl/demos/radixsort/RadixSortDemo.java
@@ -62,7 +62,7 @@ public class RadixSortDemo {
CLBuffer<IntBuffer> array = context.createIntBuffer(numElements, READ_WRITE);
out.print("array size: " + array.getCLSize()/1000000.0f+"MB; ");
- out.println("elements: " + array.getCapacity()/1000+"K");
+ out.println("elements: " + array.getCLCapacity()/1000+"K");
fillBuffer(array, maxValue);