changeset 16392:5af4dd229520

HSAIL: removed debug output
author Doug Simon <doug.simon@oracle.com>
date Thu, 03 Jul 2014 14:21:57 +0200
parents 50d79ad439f1
children 380290b81eb0
files graal/com.oracle.graal.compiler.hsail.test/src/com/oracle/graal/compiler/hsail/test/lambda/DoubleIeeeRemainderTest.java
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler.hsail.test/src/com/oracle/graal/compiler/hsail/test/lambda/DoubleIeeeRemainderTest.java	Wed Jul 02 16:06:42 2014 -0700
+++ b/graal/com.oracle.graal.compiler.hsail.test/src/com/oracle/graal/compiler/hsail/test/lambda/DoubleIeeeRemainderTest.java	Thu Jul 03 14:21:57 2014 +0200
@@ -40,10 +40,6 @@
         dispatchLambdaKernel(size * size, (gid) -> {
             bigOutArray[gid] = Math.IEEEremainder(inArray1[gid], inArray2[gid]);
         });
-
-        for (int i = 0; i < 300; i++) {
-            System.out.println(i + "| " + inArray1[i] + ", " + inArray2[i] + " -> " + bigOutArray[i]);
-        }
     }
 
     @Test