Skip to content

Commit

Permalink
switch to using blas amax instead
Browse files Browse the repository at this point in the history
  • Loading branch information
bodono committed Jun 27, 2024
1 parent 8891c9c commit 8dbbe2a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions include/scs_blas.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ extern "C" {
/* single or double precision */
#ifndef SFLOAT
#define BLAS(x) d##x
#define BLASI(x) id##x
#else
#define BLAS(x) s##x
#define BLASI(x) is##x
#endif
#else
/* this extra indirection is needed for BLASSUFFIX to work correctly as a
Expand All @@ -28,8 +30,10 @@ extern "C" {
/* single or double precision */
#ifndef SFLOAT
#define BLAS(x) stitch__(d, x, BLASSUFFIX)
#define BLASI(x) stitch__(id, x, BLASSUFFIX)
#else
#define BLAS(x) stitch__(s, x, BLASSUFFIX)
#define BLASI(x) stitch__(is, x, BLASSUFFIX)
#endif
#endif

Expand Down
18 changes: 16 additions & 2 deletions src/linalg.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,16 @@ extern "C" {
scs_float BLAS(nrm2)(blas_int *n, const scs_float *x, blas_int *incx);
scs_float BLAS(dot)(const blas_int *n, const scs_float *x, const blas_int *incx,
const scs_float *y, const blas_int *incy);
scs_float BLAS(lange)(const char *norm, const blas_int *m, const blas_int *n,
const scs_float *a, blas_int *lda, scs_float *work);
void BLAS(axpy)(blas_int *n, const scs_float *a, const scs_float *x,
blas_int *incx, scs_float *y, blas_int *incy);
void BLAS(scal)(const blas_int *n, const scs_float *sa, scs_float *sx,
const blas_int *incx);
blas_int BLASI(amax)(blas_int *n, const scs_float *x, blas_int *incx);

/* Possibly not working correctly on all platforms.
scs_float BLAS(lange)(const char *norm, const blas_int *m, const blas_int *n,
const scs_float *a, blas_int *lda, scs_float *work);
*/

#ifdef __cplusplus
}
Expand Down Expand Up @@ -140,11 +144,21 @@ scs_float SCS(norm_2)(const scs_float *v, scs_int len) {
return BLAS(nrm2)(&blen, v, &bone);
}

/* Possibly not working correctly on all platforms.
scs_float SCS(norm_inf)(const scs_float *a, scs_int len) {
blas_int bone = 1;
blas_int blen = (blas_int)len;
return BLAS(lange)("Max", &blen, &bone, a, &blen, SCS_NULL);
}
*/

scs_float SCS(norm_inf)(const scs_float *a, scs_int len) {
blas_int bone = 1;
blas_int blen = (blas_int)len;
scs_int idx = (scs_int)BLASI(amax)(&blen, a, &bone);
/* Returned idx is 1-based. */
return ABS(a[idx - 1]);
}

/* axpy a += sc*b */
void SCS(add_scaled_array)(scs_float *a, const scs_float *b, scs_int len,
Expand Down

0 comments on commit 8dbbe2a

Please sign in to comment.