# HG changeset patch # User Doug Simon # Date 1404390117 -7200 # Node ID 5af4dd229520c86377ce9f1979a7ffcdf7796020 # Parent 50d79ad439f142d5d9a2e70ad2adc82330534bc0 HSAIL: removed debug output diff -r 50d79ad439f1 -r 5af4dd229520 graal/com.oracle.graal.compiler.hsail.test/src/com/oracle/graal/compiler/hsail/test/lambda/DoubleIeeeRemainderTest.java --- 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