Skip to content

Commit

Permalink
Set default integer size for Fortran and C blas interfaces to match the
Browse files Browse the repository at this point in the history
standard cblas interface more closely.
  • Loading branch information
insertinterestingnamehere committed Mar 1, 2016
1 parent 6ae8a39 commit 8e7eb4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frame/include/bli_config_macro_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@
// leading dimensions (ie: column strides) within the BLAS compatibility layer.
// A value of 32 results in the compatibility layer using 32-bit signed integers
// while 64 results in 64-bit integers. Any other value results in use of the
// C99 type "long int". Note that this ONLY affects integers used within the
// C99 type "int". Note that this ONLY affects integers used within the
// BLAS compatibility layer.
#ifndef BLIS_BLAS2BLIS_INT_TYPE_SIZE
#define BLIS_BLAS2BLIS_INT_TYPE_SIZE 64
#define BLIS_BLAS2BLIS_INT_TYPE_SIZE 32
#endif


Expand Down
2 changes: 1 addition & 1 deletion frame/include/bli_type_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ typedef int32_t f77_int;
#elif BLIS_BLAS2BLIS_INT_TYPE_SIZE == 64
typedef int64_t f77_int;
#else
typedef long int f77_int;
typedef int f77_int;
#endif

typedef char f77_char;
Expand Down

0 comments on commit 8e7eb4c

Please sign in to comment.