numpy  2.0.0
src/multiarray/vdot.h
Go to the documentation of this file.
00001 #ifndef _NPY_VDOT_H_
00002 #define _NPY_VDOT_H_
00003 
00004 #include "common.h"
00005 
00006 NPY_NO_EXPORT void
00007 CFLOAT_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);
00008 
00009 NPY_NO_EXPORT void
00010 CDOUBLE_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);
00011 
00012 NPY_NO_EXPORT void
00013 CLONGDOUBLE_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);
00014 
00015 NPY_NO_EXPORT void
00016 OBJECT_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);
00017 
00018 #endif