Package | Description |
---|---|
org.apache.sysml.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 © 2018 The Apache Software Foundation. All rights reserved.