Package com.github.neuralnetworks.util.KernelExecutionStrategy

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


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


      break;
  case JTP:
      this.executionStrategy = new JTPKernelExecution();
      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.GPUKernelExecution

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.