Fixed missing files

This commit is contained in:
Guilhem Lavaux 2020-10-26 12:00:50 +01:00
parent 3f7da964ee
commit 5e6d69f017
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ cdef extern from "numpy/npy_common.h":
cdef extern from "special_math.hpp" namespace "CosmoTool":
T log_modified_bessel_first_kind[T](T v, T z) nogil except +
cdef extern from "numpy_adaptor.hpp" namespace "CosmoTool":
cdef extern from "numpy_adaptors.hpp" namespace "CosmoTool":
void parallel_ufunc_dd_d[T,IT](char **args, IT* dimensions, IT* steps, void *func)

View File

@ -8,7 +8,7 @@ namespace CosmoTool {
IT i;
IT n = dimensions[0];
char *in = args[0], *in2 = args[1], *out = args[2];
IT in_step = steps[0], in2_step = args[1], out_step = steps[2];
IT in_step = steps[0], in2_step = steps[1], out_step = steps[2];
double tmp;
typedef double (*F_t)(double,double);