tests passing (cython)

This commit is contained in:
James Hensman 2015-04-28 14:57:00 +01:00
parent e1c2eeb25d
commit 9e4c33910f
11 changed files with 6899 additions and 1256 deletions

View file

@ -1,7 +1,7 @@
void _grad_X(int N, int D, int M, double* X, double* X2, double* tmp, double* grad){
int n,m,d;
double retnd;
#pragma omp parallel for private(n,d, retnd, m)
//#pragma omp parallel for private(n,d, retnd, m)
for(d=0;d<D;d++){
for(n=0;n<N;n++){
retnd = 0.0;