챙길 것
2017-03-02 14:12:25

노트북 케이블

멀티탭?

▼ more
Above the night - incognito
2017-02-19 15:22:09

▼ more
연락이오면
2017-02-13 10:01:03

대구성모여성병원

대구 달서구 월배로 204

053 640 1000

http://www.smwomen.co.kr

▼ more
Cublas 할때 GRU 시작 부분
2017-02-09 22:02:14

/**

* vec *= mat

* 3 times

* ex) ei_vec *= weight.transpose();

*/

cublasSgemv(handle, CUBLAS_OP_T, //cublasHandle_t handle, cublasOperation_t trans,

SIZE, SIZE, //int m, int n,

&one, //const float *alpha,

cu_reset_in_mat, SIZE, //const float *A(m x n), int lda,

cu_reset, 1, //const float *x, int incx,

&one, //const float *beta,

cu_reset, 1); //float *y, int incy)

cublasSgemv(handle, CUBLAS_OP_T, //cublasHandle_t handle, cublasOperation_t trans,

SIZE, SIZE, //int m, int n,

&one, //const float *alpha,

cu_update_in_mat, SIZE, //const float *A(m x n), int lda,

cu_update, 1, //const float *x, int incx,

&one, //const float *beta,

cu_update, 1); //float *y, int incy)

cublasSgemv(handle, CUBLAS_OP_T, //cublasHandle_t handle, cublasOperation_t trans,

SIZE, SIZE, //int m, int n,

&one, //const float *alpha,

cu_quasihidden_in_mat, SIZE, //const float *A(m x n), int lda,

cu_quasihidden, 1, //const float *x, int incx,

&one, //const float *beta,

cu_quasihidden, 1); //float *y, int incy)

▼ more