openGPMP
Open Source Mathematics Package
|
Go to the source code of this file.
Functions | |
__kernel void | gpu_mtx_add (__global const int *A, __global const int *B, __global int *C) |
__kernel void | matrixMul (__global float *C, __global float *A, __global float *B, int wA, int wB) |
__kernel void gpu_mtx_add | ( | __global const int * | A, |
__global const int * | B, | ||
__global int * | C | ||
) |
This file implements OpenCL matrix operation related kernel functions add vectors using GPU
Definition at line 9 of file _gpu_mtx_kernel.c.
References python.linalg::A, python.linalg::B, and python.linalg::C.
__kernel void matrixMul | ( | __global float * | C, |
__global float * | A, | ||
__global float * | B, | ||
int | wA, | ||
int | wB | ||
) |
Definition at line 16 of file _gpu_mtx_kernel.c.
References python.linalg::A, python.linalg::B, and python.linalg::C.