File: mlgsl_blas.h

package info (click to toggle)
ocamlgsl 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,024 kB
  • ctags: 3,091
  • sloc: ml: 8,539; ansic: 7,338; makefile: 262; sh: 150; awk: 13
file content (33 lines) | stat: -rw-r--r-- 883 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ocamlgsl - OCaml interface to GSL                        */
/* Copyright (©) 2002-2005 - Olivier Andrieu                */
/* distributed under the terms of the GPL version 2         */

static inline CBLAS_ORDER_t CBLAS_ORDER_val(v)
{
  CBLAS_ORDER_t conv[] = { CblasRowMajor, CblasColMajor };
  return conv[ Int_val(v) ];
}

static inline CBLAS_TRANSPOSE_t CBLAS_TRANS_val(v)
{
  CBLAS_TRANSPOSE_t conv[] = { CblasNoTrans, CblasTrans, CblasConjTrans };
  return conv[ Int_val(v) ];
}

static inline CBLAS_UPLO_t CBLAS_UPLO_val(v)
{
  CBLAS_UPLO_t conv[] = { CblasUpper, CblasLower };
  return conv[ Int_val(v) ];
}

static inline CBLAS_DIAG_t CBLAS_DIAG_val(v)
{
  CBLAS_DIAG_t conv[] = { CblasNonUnit, CblasUnit };
  return conv[ Int_val(v) ];
}

static inline CBLAS_SIDE_t CBLAS_SIDE_val(v)
{
  CBLAS_SIDE_t conv[] = { CblasLeft, CblasRight };
  return conv[ Int_val(v) ];
}