| Package | Description | 
|---|---|
| org.apache.sysds.runtime.instructions.gpu.context | 
| Modifier and Type | Method and Description | 
|---|---|
| static ExecutionConfig | ExecutionConfig. getConfigForSimpleMatrixOperations(int rlen,
                                  int clen)Use this for simple vector operations and use following in the kernel
  
 int index = blockIdx.x * blockDim.x + threadIdx.x
  | 
| static ExecutionConfig | ExecutionConfig. getConfigForSimpleVectorOperations(int numCells)Use this for simple vector operations and use following in the kernel
  
 int index = blockIdx.x * blockDim.x + threadIdx.x
  | 
| Modifier and Type | Method and Description | 
|---|---|
| void | JCudaKernels. launchKernel(String name,
            ExecutionConfig config,
            Object... arguments)Setups the kernel parameters and launches the kernel using cuLaunchKernel API. | 
Copyright © 2021 The Apache Software Foundation. All rights reserved.