Browse Source

Merge pull request #481 from eschnett/develop

Correct ilaver C declaration
tags/v0.2.14^2
Zhang Xianyi 11 years ago
parent
commit
cbb3ab80e7
2 changed files with 9 additions and 9 deletions
  1. +5
    -5
      lapack-netlib/lapacke/include/lapacke.h
  2. +4
    -4
      lapack-netlib/lapacke/src/lapacke_ilaver.c

+ 5
- 5
lapack-netlib/lapacke/include/lapacke.h View File

@@ -10707,9 +10707,9 @@ lapack_int LAPACKE_zsyr_work( int matrix_order, char uplo, lapack_int n,
const lapack_complex_double* x,
lapack_int incx, lapack_complex_double* a,
lapack_int lda );
void LAPACKE_ilaver( const lapack_int* vers_major,
const lapack_int* vers_minor,
const lapack_int* vers_patch );
void LAPACKE_ilaver( lapack_int* vers_major,
lapack_int* vers_minor,
lapack_int* vers_patch );


#define LAPACK_sgetrf LAPACK_GLOBAL(sgetrf,SGETRF)
@@ -16435,8 +16435,8 @@ void LAPACK_csyr( char* uplo, lapack_int* n, lapack_complex_float* alpha,
void LAPACK_zsyr( char* uplo, lapack_int* n, lapack_complex_double* alpha,
const lapack_complex_double* x, lapack_int* incx,
lapack_complex_double* a, lapack_int* lda );
void LAPACK_ilaver( const lapack_int* vers_major, const lapack_int* vers_minor,
const lapack_int* vers_patch );
void LAPACK_ilaver( lapack_int* vers_major, lapack_int* vers_minor,
lapack_int* vers_patch );

#ifdef __cplusplus
}


+ 4
- 4
lapack-netlib/lapacke/src/lapacke_ilaver.c View File

@@ -26,16 +26,16 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************
* Contents: Native high-level C interface to LAPACK function dgesv
* Contents: Native high-level C interface to LAPACK function ilaver
* Author: Intel Corporation
* Generated November, 2011
*****************************************************************************/

#include "lapacke_utils.h"

void LAPACKE_ilaver( const lapack_int* vers_major,
const lapack_int* vers_minor,
const lapack_int* vers_patch )
void LAPACKE_ilaver( lapack_int* vers_major,
lapack_int* vers_minor,
lapack_int* vers_patch )
{
/* Call LAPACK function */
LAPACK_ilaver( vers_major, vers_minor, vers_patch );


Loading…
Cancel
Save