summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/vdot.h
blob: f6da5ddea03c9a1e9700052ff2144fe514e5a040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef NUMPY_CORE_SRC_MULTIARRAY_VDOT_H_
#define NUMPY_CORE_SRC_MULTIARRAY_VDOT_H_

#include "common.h"

NPY_NO_EXPORT void
CFLOAT_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);

NPY_NO_EXPORT void
CDOUBLE_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);

NPY_NO_EXPORT void
CLONGDOUBLE_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);

NPY_NO_EXPORT void
OBJECT_vdot(char *, npy_intp, char *, npy_intp, char *, npy_intp, void *);

#endif  /* NUMPY_CORE_SRC_MULTIARRAY_VDOT_H_ */