Blame view
src/mior/MiorSimulation.java
5.03 KB
89f70c1ec import current mc... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
package mior; /* import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.util.Arrays; import java.util.Random; import java.util.concurrent.ExecutionException; import javax.swing.JFrame; import mior.model.IMiorModel; import org.jocl.Pointer; import org.jocl.Sizeof; import org.jocl.struct.Buffers; import org.jocl.struct.SizeofStruct; import ocl.OCL; import ocl.OCLCommandQueue; import ocl.OCLContext; import ocl.OCLEvent; import ocl.OCLKernel; import ocl.OCLMem; import ocl.OCLProgram; public class MiorModel implements IMiorModel { private MiorMM [] mmList; private OCLMem mmMem; private MiorOM [] omList; private OCLMem omMem; private int [] associations; private OCLMem associationsMem; private MiorWorld world; private OCLMem worldMem; private OCLContext context; private OCLProgram program; private OCLCommandQueue queue; public MiorModel() { initializeOpenCL(); this.world = new MiorWorld(); this.worldMem = context.createBuffer(1, MiorWorld.class, OCL.MEM_RW, world); this.worldSize = SizeofStruct.sizeof(MiorWorld.class); this.associations = new int[world.nbMM * world.nbOM]; this.associationsSize = associations.length * Sizeof.cl_int; this.associationsMem = context.createBuffer(associations.length, OCL.INT, OCL.MEM_RW); initializeMM(); initializeOM(); computeTopography(); computeLive(); releaseOpenCL(); } public void computeTopography() { OCLKernel topographyKernel = program.createKernel("topography"); topographyKernel.setArguments(mmMem, omMem, associationsMem, worldMem); OCLEvent event = queue.enqueueKernel( topographyKernel, 2, new long[] { 0, 0 }, new long[] { mmList.length, omList.length }, new long[] { 1, 1 } ); try { event.get(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (ExecutionException e) { // TODO Auto-generated catch block e.printStackTrace(); } try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } queue.blockingReadBuffer(associationsMem, Pointer.to(associations), 0, associationsSize); System.out.println(Arrays.toString(associations)); System.out.println(associations.length); } public void computeLive() { OCLKernel liveKernel = program.createKernel("topography"); liveKernel.setArguments(mmMem, omMem, associationsMem, worldMem); OCLEvent event = queue.enqueue1DKernel(liveKernel, mmList.length, 1); try { event.get(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (ExecutionException e) { // TODO Auto-generated catch block e.printStackTrace(); } try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } queue.blockingReadBuffer(associationsMem, Pointer.to(associations), 0, associationsSize); System.out.println(Arrays.toString(associations)); System.out.println(associations.length); } private void initializeMM() { Random rand = new Random(); this.mmList = new MiorMM[world.nbMM]; for (int i = 0; i < world.nbMM; i++) { mmList[i] = new MiorMM( rand.nextInt(world.width), rand.nextInt(world.width) ); } this.mmBuffer = Buffers.allocateBuffer(mmList); Buffers.writeToBuffer(mmBuffer, mmList); this.mmSize = mmList.length * SizeofStruct.sizeof(MiorMM.class); this.mmMem = context.createBuffer(mmSize, OCL.MEM_RW, Pointer.to(mmBuffer)); } private void initializeOM() { Random rand = new Random(); this.omList = new MiorOM[world.nbOM]; for (int i = 0; i < world.nbOM; i++) { omList[i] = new MiorOM( rand.nextInt(world.width), rand.nextInt(world.width) ); } this.omBuffer = Buffers.allocateBuffer(omList); Buffers.writeToBuffer(omBuffer, omList); this.omSize = omList.length * SizeofStruct.sizeof(MiorOM.class); this.omMem = context.createBuffer(omSize, OCL.MEM_RW, Pointer.to(omBuffer)); } private void initializeOpenCL() { this.context = new OCLContext(); this.queue = context.createCommandQueue(); try { this.program = context.createProgram(readFileAsString("/home/glaville/mior.cl")); } catch (IOException e) { e.printStackTrace(); } } private void releaseOpenCL() { associationsMem.release(); worldMem.release(); mmMem.release(); omMem.release(); queue.release(); context.release(); } @Override public MiorOM[] getOMList() { return omList; } @Override public MiorMM[] getMMList() { return mmList; } @Override public MiorWorld getWorld() { return world; } @Override public int[] getAssociations() { return associations; } private static String readFileAsString(String filePath) throws java.io.IOException{ byte[] buffer = new byte[(int) new File(filePath).length()]; FileInputStream f = new FileInputStream(filePath); f.read(buffer); return new String(buffer); } }*/ |