26 lines
548 B
C
Raw Normal View History

2020-08-30 11:54:41 +02:00
#include <assert.h>
2021-11-20 13:41:27 +01:00
#include <stdint.h>
2020-08-30 11:54:41 +02:00
#include <string.h>
2021-11-20 13:41:27 +01:00
#if BLA_SIZEOF_INTEGER == 4
typedef int32_t blas_int;
#elif BLA_SIZEOF_INTEGER == 8
typedef int64_t blas_int;
#else
# error BLA_SIZEOF_INTEGER is not declared!
#endif
2020-08-30 11:54:41 +02:00
// declare what parts of the blas C-API we need
2021-11-20 13:41:27 +01:00
void dswap_(blas_int* N, double* X, blas_int* incX, double* Y, blas_int* incY);
2020-08-30 11:54:41 +02:00
2024-04-14 22:45:38 +02:00
int main(void)
2020-08-30 11:54:41 +02:00
{
double x[4] = { 1, 2, 3, 4 };
double y[4] = { 8, 7, 7, 6 };
2021-11-20 13:41:27 +01:00
blas_int N = 4;
blas_int incX = 1;
blas_int incY = 1;
2021-09-14 00:13:48 +02:00
dswap_(&N, x, &incX, y, &incY);
2020-08-30 11:54:41 +02:00
return 0;
}