Package com.github.neuralnetworks.util.KernelExecutionStrategy

Examples of com.github.neuralnetworks.util.KernelExecutionStrategy.DefaultKernelExecution


     * is debug
     */
    private boolean debug;

    private Environment() {
  executionStrategy = new DefaultKernelExecution();
  debug = true;
    }
View Full Code Here


      break;
  case GPU:
      this.executionStrategy = new GPUKernelExecution();
      break;
  default:
      this.executionStrategy = new DefaultKernelExecution();
  }
    }
View Full Code Here

     * Shared memory for neural network connection weights
     */
    private boolean useWeightsSharedMemory;

    private Environment() {
  executionStrategy = new DefaultKernelExecution();
  useDataSharedMemory = false;
  useWeightsSharedMemory = false;
    }
View Full Code Here

      break;
  case GPU:
      this.executionStrategy = new GPUKernelExecution();
      break;
  default:
      this.executionStrategy = new DefaultKernelExecution();
  }
    }
View Full Code Here

TOP

Related Classes of com.github.neuralnetworks.util.KernelExecutionStrategy.DefaultKernelExecution

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.