2324252627282930
* is debug */ private boolean debug; private Environment() { executionStrategy = new DefaultKernelExecution(); debug = true; }
4647484950515253
break; case GPU: this.executionStrategy = new GPUKernelExecution(); break; default: this.executionStrategy = new DefaultKernelExecution(); } }
282930313233343536
* Shared memory for neural network connection weights */ private boolean useWeightsSharedMemory; private Environment() { executionStrategy = new DefaultKernelExecution(); useDataSharedMemory = false; useWeightsSharedMemory = false; }
5253545556575859