Functions | |
enum YepStatus | yepCore_Add_V8uV8u_V8u (const Yep8u *restrict x, const Yep8u *restrict y, Yep8u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 8-bit integer arrays, producing an array of unsigned 8-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V8uV8u_V16u (const Yep8u *restrict x, const Yep8u *restrict y, Yep16u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 8-bit integer arrays, producing an array of unsigned 16-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V8sV8s_V16s (const Yep8s *restrict x, const Yep8s *restrict y, Yep16s *restrict sum, YepSize length) |
Adds corresponding elements in two signed 8-bit integer arrays, producing an array of signed 16-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V16uV16u_V16u (const Yep16u *restrict x, const Yep16u *restrict y, Yep16u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 16-bit integer arrays, producing an array of unsigned 16-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V16uV16u_V32u (const Yep16u *restrict x, const Yep16u *restrict y, Yep32u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 16-bit integer arrays, producing an array of unsigned 32-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V16sV16s_V32s (const Yep16s *restrict x, const Yep16s *restrict y, Yep32s *restrict sum, YepSize length) |
Adds corresponding elements in two signed 16-bit integer arrays, producing an array of signed 32-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V32uV32u_V32u (const Yep32u *restrict x, const Yep32u *restrict y, Yep32u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 32-bit integer arrays, producing an array of unsigned 32-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V32uV32u_V64u (const Yep32u *restrict x, const Yep32u *restrict y, Yep64u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 32-bit integer arrays, producing an array of unsigned 64-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V32sV32s_V64s (const Yep32s *restrict x, const Yep32s *restrict y, Yep64s *restrict sum, YepSize length) |
Adds corresponding elements in two signed 32-bit integer arrays, producing an array of signed 64-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V64uV64u_V64u (const Yep64u *restrict x, const Yep64u *restrict y, Yep64u *restrict sum, YepSize length) |
Adds corresponding elements in two unsigned 64-bit integer arrays, producing an array of unsigned 64-bit integer elements. More... | |
enum YepStatus | yepCore_Add_V32fV32f_V32f (const Yep32f *restrict x, const Yep32f *restrict y, Yep32f *restrict sum, YepSize length) |
Adds corresponding elements in two single precision (32-bit) floating-point arrays, producing an array of single precision (32-bit) floating-point elements. More... | |
enum YepStatus | yepCore_Add_V64fV64f_V64f (const Yep64f *restrict x, const Yep64f *restrict y, Yep64f *restrict sum, YepSize length) |
Adds corresponding elements in two double precision (64-bit) floating-point arrays, producing an array of double precision (64-bit) floating-point elements. More... | |
enum YepStatus yepCore_Add_V8uV8u_V8u | ( | const Yep8u *restrict | x, |
const Yep8u *restrict | y, | ||
Yep8u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 8-bit integer arrays, producing an array of unsigned 8-bit integer elements.
[in] | x | Pointer the first array of unsigned 8-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 8-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 8-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
ARM | ARM Cortex-A9 | VFP2, NEON |
enum YepStatus yepCore_Add_V8uV8u_V16u | ( | const Yep8u *restrict | x, |
const Yep8u *restrict | y, | ||
Yep16u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 8-bit integer arrays, producing an array of unsigned 16-bit integer elements.
[in] | x | Pointer the first array of unsigned 8-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 8-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 16-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V8sV8s_V16s | ( | const Yep8s *restrict | x, |
const Yep8s *restrict | y, | ||
Yep16s *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two signed 8-bit integer arrays, producing an array of signed 16-bit integer elements.
[in] | x | Pointer the first array of signed 8-bit integer elements to be added. |
[in] | y | Pointer the second array of signed 8-bit integer elements to be added. |
[out] | sum | Pointer the array of signed 16-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V16uV16u_V16u | ( | const Yep16u *restrict | x, |
const Yep16u *restrict | y, | ||
Yep16u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 16-bit integer arrays, producing an array of unsigned 16-bit integer elements.
[in] | x | Pointer the first array of unsigned 16-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 16-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 16-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
ARM | ARM Cortex-A9 | VFP2, NEON |
enum YepStatus yepCore_Add_V16uV16u_V32u | ( | const Yep16u *restrict | x, |
const Yep16u *restrict | y, | ||
Yep32u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 16-bit integer arrays, producing an array of unsigned 32-bit integer elements.
[in] | x | Pointer the first array of unsigned 16-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 16-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 32-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V16sV16s_V32s | ( | const Yep16s *restrict | x, |
const Yep16s *restrict | y, | ||
Yep32s *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two signed 16-bit integer arrays, producing an array of signed 32-bit integer elements.
[in] | x | Pointer the first array of signed 16-bit integer elements to be added. |
[in] | y | Pointer the second array of signed 16-bit integer elements to be added. |
[out] | sum | Pointer the array of signed 32-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V32uV32u_V32u | ( | const Yep32u *restrict | x, |
const Yep32u *restrict | y, | ||
Yep32u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 32-bit integer arrays, producing an array of unsigned 32-bit integer elements.
[in] | x | Pointer the first array of unsigned 32-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 32-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 32-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
ARM | ARM Cortex-A9 | VFP2, NEON |
enum YepStatus yepCore_Add_V32uV32u_V64u | ( | const Yep32u *restrict | x, |
const Yep32u *restrict | y, | ||
Yep64u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 32-bit integer arrays, producing an array of unsigned 64-bit integer elements.
[in] | x | Pointer the first array of unsigned 32-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 32-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 64-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V32sV32s_V64s | ( | const Yep32s *restrict | x, |
const Yep32s *restrict | y, | ||
Yep64s *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two signed 32-bit integer arrays, producing an array of signed 64-bit integer elements.
[in] | x | Pointer the first array of signed 32-bit integer elements to be added. |
[in] | y | Pointer the second array of signed 32-bit integer elements to be added. |
[out] | sum | Pointer the array of signed 64-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2, SSE4.1 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
x86-64 | AMD K10 | SSE2 |
enum YepStatus yepCore_Add_V64uV64u_V64u | ( | const Yep64u *restrict | x, |
const Yep64u *restrict | y, | ||
Yep64u *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two unsigned 64-bit integer arrays, producing an array of unsigned 64-bit integer elements.
[in] | x | Pointer the first array of unsigned 64-bit integer elements to be added. |
[in] | y | Pointer the second array of unsigned 64-bit integer elements to be added. |
[out] | sum | Pointer the array of unsigned 64-bit integer elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2 |
x86-64 | Intel Sandy Bridge | AVX |
x86-64 | Intel Haswell | AVX, AVX2 |
enum YepStatus yepCore_Add_V32fV32f_V32f | ( | const Yep32f *restrict | x, |
const Yep32f *restrict | y, | ||
Yep32f *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two single precision (32-bit) floating-point arrays, producing an array of single precision (32-bit) floating-point elements.
[in] | x | Pointer the first array of single precision (32-bit) floating-point elements to be added. |
[in] | y | Pointer the second array of single precision (32-bit) floating-point elements to be added. |
[out] | sum | Pointer the array of single precision (32-bit) floating-point elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE |
x86-64 | Intel Sandy Bridge | AVX |
enum YepStatus yepCore_Add_V64fV64f_V64f | ( | const Yep64f *restrict | x, |
const Yep64f *restrict | y, | ||
Yep64f *restrict | sum, | ||
YepSize | length | ||
) |
Adds corresponding elements in two double precision (64-bit) floating-point arrays, producing an array of double precision (64-bit) floating-point elements.
[in] | x | Pointer the first array of double precision (64-bit) floating-point elements to be added. |
[in] | y | Pointer the second array of double precision (64-bit) floating-point elements to be added. |
[out] | sum | Pointer the array of double precision (64-bit) floating-point elements where the pairwise sums will be stored. |
[in] | length | The length of the arrays specified by x and y, and sum. |
YepStatusOk | The computation finished successfully. |
YepStatusNullPointer | x, y or sum argument is null. |
YepStatusMisalignedPointer | x, y or sum argument is not naturally aligned. |
Architecture | Target microarchitecture | Required instruction extensions |
---|---|---|
x86-64 | Intel Nehalem | SSE2 |
x86-64 | Intel Sandy Bridge | AVX |