1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
#include <Python.h>
#include <stdio.h>
#include <math.h>
#include "libnumarray.h"
#ifdef MS_WIN32
#pragma warning(once : 4244)
#endif
#define logical_and(arg1, arg2) (arg1 != 0) & (arg2 != 0)
#define logical_or(arg1, arg2) (arg1 != 0) | (arg2 != 0)
#define logical_xor(arg1, arg2) ((arg1 != 0) ^ (arg2 != 0)) & 1
#define ufmaximum(arg1, arg2) (((temp1=arg1) > (temp2=arg2)) ? temp1 : temp2)
#define ufminimum(arg1, arg2) (((temp1=arg1) < (temp2=arg2)) ? temp1 : temp2)
static PyObject *_Error;
static double c_bessel(double x, double y)
{
double x2=x*x, y2=y*y, diff=x2-y2;
return diff*diff/(x2+y2);
}
static UInt8 c_bar(UInt32 x )
{
return (x >> 24) & 0xFF;
}
extern int airy ( double x, double *ai, double *aip, double *bi, double *bip );
static int airy_dxidddd_vxfvvvv(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float64 *tin0 = (Float64 *) buffers[0];
Int32 *tout0 = (Int32 *) buffers[1];
Float64 *tout1 = (Float64 *) buffers[2];
Float64 *tout2 = (Float64 *) buffers[3];
Float64 *tout3 = (Float64 *) buffers[4];
Float64 *tout4 = (Float64 *) buffers[5];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = airy(*tin0, tout1, tout2, tout3, tout4);
++tin0; ++tout0; ++tout1; ++tout2; ++tout3; ++tout4;
}
END_THREADS
return 0;
}
static CfuncDescriptor airy_dxidddd_vxfvvvv_descr =
{ "airy_dxidddd_vxfvvvv", (void *) airy_dxidddd_vxfvvvv, CFUNC_UFUNC, 0, CHECK_ALIGN, 1, 5,
{ sizeof(Float64), sizeof(Int32), sizeof(Float64), sizeof(Float64), sizeof(Float64), sizeof(Float64) }, { 0, 0, 0, 0, 0, 0, 0 } };
static int bar_uxb_vxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
UInt32 *tin0 = (UInt32 *) buffers[0];
UInt8 *tout0 = (UInt8 *) buffers[1];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bar(*tin0);
++tin0; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bar_uxb_vxf_descr =
{ "bar_uxb_vxf", (void *) bar_uxb_vxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 1, 1,
{ sizeof(UInt32), sizeof(UInt8) }, { 0, 0, 0 } };
static int bessel_ffxf_vsxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float32 *tin0 = (Float32 *) buffers[0];
Float32 tin1 = *(Float32 *) buffers[1];
Float32 *tout0 = (Float32 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(*tin0, tin1);
++tin0; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ffxf_vsxf_descr =
{ "bessel_ffxf_vsxf", (void *) bessel_ffxf_vsxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float32), sizeof(Float32), sizeof(Float32) }, { 0, 1, 0, 0 } };
static int bessel_ffxf_vvxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float32 *tin0 = (Float32 *) buffers[0];
Float32 *tin1 = (Float32 *) buffers[1];
Float32 *tout0 = (Float32 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(*tin0, *tin1);
++tin0; ++tin1; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ffxf_vvxf_descr =
{ "bessel_ffxf_vvxf", (void *) bessel_ffxf_vvxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float32), sizeof(Float32), sizeof(Float32) }, { 0, 0, 0, 0 } };
static void _bessel_ffxf_R(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
long i;
Float32 *tin0 = (Float32 *) ((char *) input + inboffset);
Float32 *tout0 = (Float32 *) ((char *) output + outboffset);
Float32 net;
if (dim == 0) {
net = *tout0;
for (i=1; i<niters[dim]; i++) {
tin0 = (Float32 *) ((char *) tin0 + inbstrides[dim]);
net = c_bessel(net, *tin0);
}
*tout0 = net;
}
else {
for (i=0; i<niters[dim]; i++) {
_bessel_ffxf_R(dim-1, dummy, niters,
input, inboffset + i*inbstrides[dim], inbstrides,
output, outboffset + i*outbstrides[dim], outbstrides);
}
}
}
static int bessel_ffxf_R(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
BEGIN_THREADS
_bessel_ffxf_R(dim, dummy, niters, input, inboffset, inbstrides,
output, outboffset, outbstrides );
END_THREADS
return 0;
}
STRIDING_DESCR2(bessel_ffxf_R, CHECK_ALIGN, sizeof(Float32), sizeof(Float32));
static void _bessel_ffxf_A(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
long i;
Float32 *tin0 = (Float32 *) ((char *) input + inboffset);
Float32 *tout0 = (Float32 *) ((char *) output + outboffset);
Float32 lastval;
if (dim == 0) {
for (i=1; i<niters[dim]; i++) {
lastval = *tout0;
tin0 = (Float32 *) ((char *) tin0 + inbstrides[dim]);
tout0 = (Float32 *) ((char *) tout0 + outbstrides[dim]);
*tout0 = c_bessel(lastval ,*tin0);
}
}
else {
for (i=0; i<niters[dim]; i++) {
_bessel_ffxf_A(dim-1, dummy, niters,
input, inboffset + i*inbstrides[dim], inbstrides,
output, outboffset + i*outbstrides[dim], outbstrides);
}
}
}
static int bessel_ffxf_A(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
BEGIN_THREADS
_bessel_ffxf_A(dim, dummy, niters,
input, inboffset, inbstrides, output,
outboffset, outbstrides);
END_THREADS
return 0;
}
STRIDING_DESCR2(bessel_ffxf_A, CHECK_ALIGN, sizeof(Float32), sizeof(Float32));
static int bessel_ffxf_svxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float32 tin0 = *(Float32 *) buffers[0];
Float32 *tin1 = (Float32 *) buffers[1];
Float32 *tout0 = (Float32 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(tin0, *tin1);
++tin1; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ffxf_svxf_descr =
{ "bessel_ffxf_svxf", (void *) bessel_ffxf_svxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float32), sizeof(Float32), sizeof(Float32) }, { 1, 0, 0, 0 } };
static int cos_fxf_vxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float32 *tin0 = (Float32 *) buffers[0];
Float32 *tout0 = (Float32 *) buffers[1];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = cos(*tin0);
++tin0; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor cos_fxf_vxf_descr =
{ "cos_fxf_vxf", (void *) cos_fxf_vxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 1, 1,
{ sizeof(Float32), sizeof(Float32) }, { 0, 0, 0 } };
static int bessel_ddxd_vsxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float64 *tin0 = (Float64 *) buffers[0];
Float64 tin1 = *(Float64 *) buffers[1];
Float64 *tout0 = (Float64 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(*tin0, tin1);
++tin0; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ddxd_vsxf_descr =
{ "bessel_ddxd_vsxf", (void *) bessel_ddxd_vsxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float64), sizeof(Float64), sizeof(Float64) }, { 0, 1, 0, 0 } };
static int bessel_ddxd_vvxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float64 *tin0 = (Float64 *) buffers[0];
Float64 *tin1 = (Float64 *) buffers[1];
Float64 *tout0 = (Float64 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(*tin0, *tin1);
++tin0; ++tin1; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ddxd_vvxf_descr =
{ "bessel_ddxd_vvxf", (void *) bessel_ddxd_vvxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float64), sizeof(Float64), sizeof(Float64) }, { 0, 0, 0, 0 } };
static void _bessel_ddxd_R(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
long i;
Float64 *tin0 = (Float64 *) ((char *) input + inboffset);
Float64 *tout0 = (Float64 *) ((char *) output + outboffset);
Float64 net;
if (dim == 0) {
net = *tout0;
for (i=1; i<niters[dim]; i++) {
tin0 = (Float64 *) ((char *) tin0 + inbstrides[dim]);
net = c_bessel(net, *tin0);
}
*tout0 = net;
}
else {
for (i=0; i<niters[dim]; i++) {
_bessel_ddxd_R(dim-1, dummy, niters,
input, inboffset + i*inbstrides[dim], inbstrides,
output, outboffset + i*outbstrides[dim], outbstrides);
}
}
}
static int bessel_ddxd_R(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
BEGIN_THREADS
_bessel_ddxd_R(dim, dummy, niters, input, inboffset, inbstrides,
output, outboffset, outbstrides );
END_THREADS
return 0;
}
STRIDING_DESCR2(bessel_ddxd_R, CHECK_ALIGN, sizeof(Float64), sizeof(Float64));
static void _bessel_ddxd_A(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
long i;
Float64 *tin0 = (Float64 *) ((char *) input + inboffset);
Float64 *tout0 = (Float64 *) ((char *) output + outboffset);
Float64 lastval;
if (dim == 0) {
for (i=1; i<niters[dim]; i++) {
lastval = *tout0;
tin0 = (Float64 *) ((char *) tin0 + inbstrides[dim]);
tout0 = (Float64 *) ((char *) tout0 + outbstrides[dim]);
*tout0 = c_bessel(lastval ,*tin0);
}
}
else {
for (i=0; i<niters[dim]; i++) {
_bessel_ddxd_A(dim-1, dummy, niters,
input, inboffset + i*inbstrides[dim], inbstrides,
output, outboffset + i*outbstrides[dim], outbstrides);
}
}
}
static int bessel_ddxd_A(long dim, long dummy, maybelong *niters,
void *input, long inboffset, maybelong *inbstrides,
void *output, long outboffset, maybelong *outbstrides) {
BEGIN_THREADS
_bessel_ddxd_A(dim, dummy, niters,
input, inboffset, inbstrides, output,
outboffset, outbstrides);
END_THREADS
return 0;
}
STRIDING_DESCR2(bessel_ddxd_A, CHECK_ALIGN, sizeof(Float64), sizeof(Float64));
static int bessel_ddxd_svxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float64 tin0 = *(Float64 *) buffers[0];
Float64 *tin1 = (Float64 *) buffers[1];
Float64 *tout0 = (Float64 *) buffers[2];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = c_bessel(tin0, *tin1);
++tin1; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor bessel_ddxd_svxf_descr =
{ "bessel_ddxd_svxf", (void *) bessel_ddxd_svxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 2, 1,
{ sizeof(Float64), sizeof(Float64), sizeof(Float64) }, { 1, 0, 0, 0 } };
static int cos_dxd_vxf(long niter, long ninargs, long noutargs, void **buffers, long *bsizes) {
long i;
Float64 *tin0 = (Float64 *) buffers[0];
Float64 *tout0 = (Float64 *) buffers[1];
BEGIN_THREADS
for (i=0; i<niter; i++) {
*tout0 = cos(*tin0);
++tin0; ++tout0;
}
END_THREADS
return 0;
}
static CfuncDescriptor cos_dxd_vxf_descr =
{ "cos_dxd_vxf", (void *) cos_dxd_vxf, CFUNC_UFUNC, 0, CHECK_ALIGN, 1, 1,
{ sizeof(Float64), sizeof(Float64) }, { 0, 0, 0 } };
static PyMethodDef _fooMethods[] = {
{NULL, NULL} /* Sentinel */
};
static PyObject *init_funcDict(void) {
PyObject *dict;
dict = PyDict_New();
NA_add_cfunc(dict, "('airy', 'v', (('Float64',), ('Int32', 'Float64', 'Float64', 'Float64', 'Float64')))", (void *) &airy_dxidddd_vxfvvvv_descr);
NA_add_cfunc(dict, "('bar', 'v', (('UInt32',), ('UInt8',)))", (void *) &bar_uxb_vxf_descr);
NA_add_cfunc(dict, "('bessel', 'vs', (('Float32', 'Float32'), ('Float32',)))", (void *) &bessel_ffxf_vsxf_descr);
NA_add_cfunc(dict, "('bessel', 'vv', (('Float32', 'Float32'), ('Float32',)))", (void *) &bessel_ffxf_vvxf_descr);
NA_add_cfunc(dict, "('bessel', 'R', (('Float32', 'Float32'), ('Float32',)))", (void *) &bessel_ffxf_R_descr);
NA_add_cfunc(dict, "('bessel', 'A', (('Float32', 'Float32'), ('Float32',)))", (void *) &bessel_ffxf_A_descr);
NA_add_cfunc(dict, "('bessel', 'sv', (('Float32', 'Float32'), ('Float32',)))", (void *) &bessel_ffxf_svxf_descr);
NA_add_cfunc(dict, "('cos', 'v', (('Float32',), ('Float32',)))", (void *) &cos_fxf_vxf_descr);
NA_add_cfunc(dict, "('bessel', 'vs', (('Float64', 'Float64'), ('Float64',)))", (void *) &bessel_ddxd_vsxf_descr);
NA_add_cfunc(dict, "('bessel', 'vv', (('Float64', 'Float64'), ('Float64',)))", (void *) &bessel_ddxd_vvxf_descr);
NA_add_cfunc(dict, "('bessel', 'R', (('Float64', 'Float64'), ('Float64',)))", (void *) &bessel_ddxd_R_descr);
NA_add_cfunc(dict, "('bessel', 'A', (('Float64', 'Float64'), ('Float64',)))", (void *) &bessel_ddxd_A_descr);
NA_add_cfunc(dict, "('bessel', 'sv', (('Float64', 'Float64'), ('Float64',)))", (void *) &bessel_ddxd_svxf_descr);
NA_add_cfunc(dict, "('cos', 'v', (('Float64',), ('Float64',)))", (void *) &cos_dxd_vxf_descr);
return dict;
}
/* platform independent*/
#ifdef MS_WIN32
__declspec(dllexport)
#endif
void init_foo(void) {
PyObject *m, *d;
m = Py_InitModule("_foo", _fooMethods);
d = PyModule_GetDict(m);
_Error = PyErr_NewException("_foo.error", NULL, NULL);
PyDict_SetItemString(d, "error", _Error);
import_libnumarray();
PyDict_SetItemString(d, "functionDict", init_funcDict());
}
|