Fixed missing files
This commit is contained in:
parent
3f7da964ee
commit
5e6d69f017
@ -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)
|
||||
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user