Blame view
src/collembola/CollemSimulation2.java
10.9 KB
1b1e928cc initial import of... |
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
package collembola; import java.net.MalformedURLException; import java.net.URL; import joptsimple.OptionParser; import joptsimple.OptionSet; import mcmas.core.MCMChrono; import mcmas.core.MCMCommandQueue; import mcmas.core.MCMCommandQueueProperty; import mcmas.core.MCMContext; import mcmas.core.MCMEvent; import mcmas.core.MCMKernel; import mcmas.core.MCMMem; import mcmas.core.MCMProgram; import mcmas.core.MCMUtils; import org.jocl.CL; import org.jocl.Pointer; import collembola.model.CollemLoader; import collembola.model.CollemModel; //import collembola.model.CollemUtils; public class CollemSimulation2 { private final CollemModel model; private MCMContext context; private final MCMCommandQueue queue; private final MCMProgram program; //private final OCLKernel kernel; private final MCMKernel reproduceKernel; private final MCMKernel newArrivalsKernel; private final MCMKernel diffuseKernel; private final MCMKernel deathKernel; //private final OCLMem patchesMem; //private final OCLMem terrainsMem; //private final IntBuffer patchesPopulations; //private final IntBuffer patchesOverflows; //private final IntBuffer patchesOwners; //private final IntBuffer patchesTypes; //private final IntBuffer plotsPopulations; //private final IntBuffer plotSurface; //private final CollemWorld world; private final int [] patchesPopulations; private final int [] newPopulations; private final int [] patchesOverflows; private final int [] plotsPopulations; private final MCMMem patchesPopulationsMem; private final MCMMem patchesOverflowsMem; private final MCMMem patchesOwnersMem; private final MCMMem patchesTypesMem; private final MCMMem newPopulationsMem; private final MCMMem plotsPopulationsMem; private final MCMMem plotsSurfacesMem; private final MCMMem worldMem; public CollemSimulation2(CollemModel model) { this(model, new MCMContext()); } public CollemSimulation2(CollemModel model, MCMContext context) { this.model = model; this.context = context; this.queue = context.createCommandQueue(MCMCommandQueueProperty.ENABLE_PROFILING); //this.patchesMem = context.newBuffer().Using(model.getPatches()).b(); //this.terrainsMem = context.newBuffer().Using(model.getTerrains()).b(); //this.populationsMem = context.newBuffer().Using(model.getPopulations()).b(); //this.worldMem = context.newBuffer().Using(model.getWorld()).b(); this.program = MCMUtils.compileFile(context, "kernels/collembola2.cl", " -DWIDTH=" + model.getWidth() + " -DHEIGHT=" + model.getHeight()); //this.kernel = program.createKernel("collembola"); //this.kernel = program.createKernel("diffusion"); this.reproduceKernel = program.createKernel("reproduction"); this.newArrivalsKernel = program.createKernel("newArrivals"); this.diffuseKernel = program.createKernel("diffusion"); this.deathKernel = program.createKernel("death"); /*this.patchesPopulations = new int[(model.getHeight() + 2) * (model.getWidth() + 2)]; this.newPopulations = new int[(model.getHeight() + 2) * (model.getWidth() + 2)]; this.patchesOverflows = new int[model.getHeight() * model.getWidth()];*/ this.patchesPopulations = model.getPatchesPopulations(); //this.patchesPopulations = new int[model.getHeight() * model.getWidth()]; this.newPopulations = new int[model.getHeight() * model.getWidth()]; this.patchesOverflows = new int[(model.getHeight() + 2) * (model.getWidth() + 2)]; for (int i = 0; i < model.getWorld().width; i++) { this.patchesPopulations[model.getHeight() / 2 * model.getWidth() + i] = 100; } //this.patchesPopulations[8 * 8] = 1000; //this.patchesPopulations[8 * 8] = 1000; this.plotsPopulations = new int[model.getPlotsSurfaces().length]; this.patchesPopulationsMem = context.newBuffer().Using(patchesPopulations).b(); this.newPopulationsMem = context.newBuffer().Using(newPopulations).b(); this.patchesOwnersMem = context.newBuffer().Using(model.getPatchesOwners()).b(); this.patchesTypesMem = context.newBuffer().Using(model.getPatchesTypes()).b(); this.patchesOverflowsMem = context.newBuffer().Using(patchesOverflows).b(); this.plotsSurfacesMem = context.newBuffer().Using(model.getPlotsSurfaces()).b(); this.plotsPopulationsMem = context.newBuffer().Using(plotsPopulations).b(); this.worldMem = context.newBuffer().Using(model.getWorld()).b(); } /* public void prepare() { int [] terrains = model.getTerrains(); System.out.println(Arrays.toString(model.getPopulations())); //kernel.setArguments(patchesMem, model.getWidth()); kernel.setArguments(populationsMem, terrainsMem, model.getWidth(), model.getHeight()); queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }); queue.blockingReadBuffer(terrainsMem, Pointer.to(terrains), 0, terrainsMem.getSize()); System.out.println(Arrays.toString(terrains)); queue.enqueueCopyBuffer(terrainsMem, populationsMem, 0, 0, terrainsMem.getSize()); queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }); queue.blockingReadBuffer(terrainsMem, Pointer.to(terrains), 0, terrainsMem.getSize()); //System.out.println(Arrays.toString(model.getPatches())); //System.out.println(Arrays.toString(terrains)); System.out.println(Arrays.toString(terrains)); queue.enqueueCopyBuffer(terrainsMem, populationsMem, 0, 0, terrainsMem.getSize()); queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }); queue.blockingReadBuffer(terrainsMem, Pointer.to(terrains), 0, terrainsMem.getSize()); //System.out.println(Arrays.toString(model.getPatches())); //System.out.println(Arrays.toString(terrains)); System.out.println(Arrays.toString(terrains)); queue.enqueueCopyBuffer(terrainsMem, populationsMem, 0, 0, terrainsMem.getSize()); queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }); queue.blockingReadBuffer(terrainsMem, Pointer.to(terrains), 0, terrainsMem.getSize()); //System.out.println(Arrays.toString(model.getPatches())); //System.out.println(Arrays.toString(terrains)); System.out.println(Arrays.toString(terrains)); queue.enqueueCopyBuffer(terrainsMem, populationsMem, 0, 0, terrainsMem.getSize()); queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }); queue.blockingReadBuffer(terrainsMem, Pointer.to(terrains), 0, terrainsMem.getSize()); //System.out.println(Arrays.toString(model.getPatches())); //System.out.println(Arrays.toString(terrains)); System.out.println(Arrays.toString(terrains)); }*/ public void run(int nbIterations) { newArrivalsKernel.setArguments(worldMem, patchesPopulationsMem, patchesOwnersMem, plotsPopulationsMem, plotsSurfacesMem, patchesTypesMem); reproduceKernel.setArguments(worldMem, patchesPopulationsMem, patchesOwnersMem, plotsPopulationsMem, patchesTypesMem); diffuseKernel.setArguments(worldMem, patchesPopulationsMem, patchesOverflowsMem, newPopulationsMem, patchesTypesMem); deathKernel.setArguments(worldMem, patchesPopulationsMem, patchesTypesMem); MCMEvent newArrivalFinished, reproduceFinished, diffuseFinished, copyFinished, deathFinished; //int i = 1; MCMChrono totalTime = new MCMChrono("totalTime"); totalTime.start(); //System.out.println(Arrays.toString(model.getPatchesTypes())); for (int i = 0; i < nbIterations; i++) { //while (true) { newArrivalFinished = enqueueKernel(newArrivalsKernel); reproduceFinished = enqueueKernel(reproduceKernel, newArrivalFinished); diffuseFinished = enqueueKernel(diffuseKernel, reproduceFinished); copyFinished = queue.enqueueCopyBuffer(newPopulationsMem, patchesPopulationsMem, 0L, 0L, patchesPopulationsMem.getSize(), diffuseFinished); //OCLEvent.waitFor(copyFinished); deathFinished = enqueueKernel(deathKernel, copyFinished); queue.blockingReadBuffer(plotsPopulationsMem, Pointer.to(plotsPopulations), 0, plotsPopulationsMem.getSize(), deathFinished); queue.blockingReadBuffer(patchesPopulationsMem, Pointer.to(patchesPopulations), 0, patchesPopulationsMem.getSize(), deathFinished); queue.blockingReadBuffer(patchesOverflowsMem, Pointer.to(patchesOverflows), 0, patchesOverflowsMem.getSize(), deathFinished); /*queue.flush();*/ /*queue.finish();*/ /*OCLUtils.printEventStats("newArrivals", newArrivalFinished); OCLUtils.printEventStats("reproduction", reproduceFinished); OCLUtils.printEventStats("diffusion", diffuseFinished); OCLUtils.printEventStats("swapBuffers", copyFinished); OCLUtils.printEventStats("death", deathFinished);*/ // TODO: Uncomment these line for population pictures //CollemUtils.savePicture(patchesPopulations, model.getWidth(), "pop", i); //CollemUtils.savePicture(patchesOverflows, model.getWidth() + 2, "over", i); //i++; //if (i == 100) break; } //queue.flush(); queue.finish(); System.out.println("For " + nbIterations + " iterations, " + totalTime.stop()); } public void release() { worldMem.release(); patchesOverflowsMem.release(); patchesTypesMem.release(); patchesOwnersMem.release(); patchesPopulationsMem.release(); newPopulationsMem.release(); plotsPopulationsMem.release(); plotsSurfacesMem.release(); newArrivalsKernel.release(); reproduceKernel.release(); diffuseKernel.release(); deathKernel.release(); program.release(); queue.release(); context.release(); } public static void main(String[] args) throws MalformedURLException { OptionParser parser = new OptionParser(); parser.accepts("cpu", "Force OpenCL CPU mode"); parser.accepts("scale", "Scale to use").withRequiredArg() .ofType(Integer.class).defaultsTo(1); parser.accepts("n", "Number of iterations to execute").withRequiredArg() .ofType(Integer.class).defaultsTo(500); OptionSet options = parser.parse(args); MCMContext context = null; if (options.has("cpu")) { System.out.println("Forcing OpenCL CPU mode..."); context = new MCMContext(CL.CL_DEVICE_TYPE_CPU); } else { context = new MCMContext(); } final int nbIterations = (Integer) options.valueOf("n"); final int scale = (Integer) options.valueOf("scale"); System.out.println("Using scale: " + scale); CollemModel model = CollemLoader.load(scale * 256, scale * 256, new URL("file://data/site4.shp")); model.getWorld().growthRate = 3f; model.getWorld().diffusionThreshold = 0f; model.getWorld().diffusionRate = 0.5f; //model.savePicture(); CollemSimulation2 sim = new CollemSimulation2(model, context); //System.out.println(Arrays.toString(model.getPatchesOwners())); //CollemUtils.savePicture(model.getPatchesOwners(), model.getWidth(), "owners", 0); //CollemUtils.savePicture(sim.patchesPopulations, model.getWidth(), "pop", 0); sim.run(nbIterations); sim.release(); } private MCMEvent enqueueKernel(MCMKernel kernel, MCMEvent... events) { MCMEvent e = queue.enqueueKernel(kernel, 2, new long[] { model.getHeight(), model.getWidth() }, events); //queue.flush(); //queue.finish(); return e; } } |