aboutsummaryrefslogtreecommitdiff
path: root/matrix/cukernel.h
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-06-22 19:01:29 +0800
committerDeterminant <ted.sybil@gmail.com>2015-06-22 19:01:29 +0800
commit2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 (patch)
tree382f97575bd2df9ee6abb1662b11b279fc22d72b /matrix/cukernel.h
parent196e9b48a3541caccdffc5743001cced70667091 (diff)
major change: use luarocks to manage project
Diffstat (limited to 'matrix/cukernel.h')
-rw-r--r--matrix/cukernel.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/matrix/cukernel.h b/matrix/cukernel.h
deleted file mode 100644
index 8a1494f..0000000
--- a/matrix/cukernel.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifdef NERV_GENERIC_CUKERNEL
-void cudak_(cuda_mul_elem)(const Matrix *a, const Matrix *b, Matrix *c);
-void cudak_(cuda_log_elem)(const Matrix *a, Matrix *b);
-void cudak_(cuda_sigmoid)(const Matrix *a, Matrix *b);
-void cudak_(cuda_sigmoid_grad)(const Matrix *output, const Matrix *err, Matrix *nerr);
-void cudak_(cuda_rowsum)(const Matrix *a, Matrix *b);
-void cudak_(cuda_rowmax)(const Matrix *a, Matrix *b);
-void cudak_(cuda_rowmax_idx)(const Matrix *a, Matrix *b, Matrix *idx);
-void cudak_(cuda_colsum)(const Matrix *a, Matrix *b);
-void cudak_(cuda_colsame)(const Matrix *a, const Matrix *ref, 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);
-void cudak_(cuda_expand_frm)(const Matrix *a, Matrix *b, int context);
-void cudak_(cuda_rearrange_frm)(const Matrix *a, Matrix *b, int step);
-void cudak_(cuda_scale_rows_by_row)(const Matrix *a, Matrix *b);
-void cudak_(cuda_scale_rows_by_col)(const Matrix *a, Matrix *b);
-void cudak_(cuda_decompress)(const Matrix *a, Matrix *b);
-#endif