diff options
author | Determinant <[email protected]> | 2015-05-26 18:56:29 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-26 18:56:29 +0800 |
commit | c7e170d4f3cc9f73380380a96318cbea437d48ba (patch) | |
tree | 41abed014da976a4d27a1cbdcfa3171d45657eac /matrix/cukernel.h | |
parent | fd389b72623dcb44009076c3819a74a79b6f94be (diff) |
add fill for cumatrix
Diffstat (limited to 'matrix/cukernel.h')
-rw-r--r-- | matrix/cukernel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/matrix/cukernel.h b/matrix/cukernel.h index dc4ac5a..3cad489 100644 --- a/matrix/cukernel.h +++ b/matrix/cukernel.h @@ -6,4 +6,5 @@ void cudak_(cuda_colsum)(const Matrix *a, Matrix *b); void cudak_(cuda_softmax_denominator)(const Matrix *a, const Matrix *max, Matrix *b); void cudak_(cuda_softmax_final)(const Matrix *a, const Matrix *max, const Matrix *deno, Matrix *b); void cudak_(cuda_add_row)(const Matrix *a, Matrix *b, double beta); +void cudak_(cuda_fill)(Matrix *a, double val); #endif |