Merge pull request #481 from eschnett/develop
Correct ilaver C declaration
This commit is contained in:
commit
cbb3ab80e7
|
@ -10707,9 +10707,9 @@ lapack_int LAPACKE_zsyr_work( int matrix_order, char uplo, lapack_int n,
|
||||||
const lapack_complex_double* x,
|
const lapack_complex_double* x,
|
||||||
lapack_int incx, lapack_complex_double* a,
|
lapack_int incx, lapack_complex_double* a,
|
||||||
lapack_int lda );
|
lapack_int lda );
|
||||||
void LAPACKE_ilaver( const lapack_int* vers_major,
|
void LAPACKE_ilaver( lapack_int* vers_major,
|
||||||
const lapack_int* vers_minor,
|
lapack_int* vers_minor,
|
||||||
const lapack_int* vers_patch );
|
lapack_int* vers_patch );
|
||||||
|
|
||||||
|
|
||||||
#define LAPACK_sgetrf LAPACK_GLOBAL(sgetrf,SGETRF)
|
#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,
|
void LAPACK_zsyr( char* uplo, lapack_int* n, lapack_complex_double* alpha,
|
||||||
const lapack_complex_double* x, lapack_int* incx,
|
const lapack_complex_double* x, lapack_int* incx,
|
||||||
lapack_complex_double* a, lapack_int* lda );
|
lapack_complex_double* a, lapack_int* lda );
|
||||||
void LAPACK_ilaver( const lapack_int* vers_major, const lapack_int* vers_minor,
|
void LAPACK_ilaver( lapack_int* vers_major, lapack_int* vers_minor,
|
||||||
const lapack_int* vers_patch );
|
lapack_int* vers_patch );
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,16 +26,16 @@
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||||
THE POSSIBILITY OF SUCH DAMAGE.
|
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
|
* Author: Intel Corporation
|
||||||
* Generated November, 2011
|
* Generated November, 2011
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#include "lapacke_utils.h"
|
#include "lapacke_utils.h"
|
||||||
|
|
||||||
void LAPACKE_ilaver( const lapack_int* vers_major,
|
void LAPACKE_ilaver( lapack_int* vers_major,
|
||||||
const lapack_int* vers_minor,
|
lapack_int* vers_minor,
|
||||||
const lapack_int* vers_patch )
|
lapack_int* vers_patch )
|
||||||
{
|
{
|
||||||
/* Call LAPACK function */
|
/* Call LAPACK function */
|
||||||
LAPACK_ilaver( vers_major, vers_minor, vers_patch );
|
LAPACK_ilaver( vers_major, vers_minor, vers_patch );
|
||||||
|
|
Loading…
Reference in New Issue