X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/book_gpu.git/blobdiff_plain/bdec1b5087c2ea922fcf62ad0591b8d784ddf3b7..0f26b548f3029a96eafd6667024aabe2b36e464b:/BookGPU/Chapters/chapter17/code/mior_launcher.java diff --git a/BookGPU/Chapters/chapter17/code/mior_launcher.java b/BookGPU/Chapters/chapter17/code/mior_launcher.java index 3b648eb..5203858 100644 --- a/BookGPU/Chapters/chapter17/code/mior_launcher.java +++ b/BookGPU/Chapters/chapter17/code/mior_launcher.java @@ -3,18 +3,17 @@ protected void doLiveImpl() { simulateKernel.setArguments(mmMem, omMem, worldsMem, mmOffsetsMem, omOffsetsMem, mmCSRMem, omCSRMem, partsMem); if (blockSize < Math.max(nbOM, nbMM)) { - throw new RuntimeException("blockSize (" + blockSize + ") too small to execute the simulation"); + throw new RuntimeException("blockSize (" + blockSize + + ") too small to execute the simulation"); } OCLEvent event = queue.enqueue1DKernel(simulateKernel, nbSim * blockSize, blockSize); OCLEvent.waitFor(event); - OCLUtils.printEventStats("simulate", event); if (! isBatchModeEnabled()) { queue.blockingReadBuffer(mmMem, mmList, 0, mmMem.getSize()); queue.blockingReadBuffer(omMem, omList, 0, omMem.getSize()); queue.blockingReadBuffer(worldsMem, worlds, 0, worldsMem.getSize()); - System.out.println("copy"); } }