Merge pull request #481 from eschnett/develop

Correct ilaver C declaration
This commit is contained in:
Zhang Xianyi 2014-12-26 10:09:19 +08:00
commit cbb3ab80e7
2 changed files with 9 additions and 9 deletions

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
}

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 );