Apply patch submitted by Matthew Faverge, INRIA on Nov 19th 2013
authorjulie <julielangou@users.noreply.github.com>
Tue, 19 Nov 2013 09:43:31 +0000 (09:43 +0000)
committerjulie <julielangou@users.noreply.github.com>
Tue, 19 Nov 2013 09:43:31 +0000 (09:43 +0000)
commitd7eb9b6123eecf73f0699e2cb25ffab26c633557
treeaada7a82c1b715dc739bcb888784ba63025d5561
parent72ee3708a3c5951f54cd08b1592eb530122d72e0
Apply patch submitted by Matthew Faverge, INRIA on Nov 19th 2013

There are problems  in LAPACKE complex lacn2 interfaces. Those functions don't have a "isgn" parmeter in LAPACK. This exists only for real interface. The problem is present in the four files of C and Z functions.

In Lapack:
  SUBROUTINE ZLACN2( N, V, X, EST, KASE, ISAVE )

In Lapacke:
   LAPACK_zlacn2( &n, v, x, isgn, est, kase, isave );
lapacke/example/example_DGESV_colmajor.c
lapacke/example/example_DGESV_rowmajor.c
lapacke/example/lapacke_example_aux.c
lapacke/include/lapacke.h
lapacke/src/lapacke_clacn2.c
lapacke/src/lapacke_clacn2_work.c
lapacke/src/lapacke_zlacn2.c
lapacke/src/lapacke_zlacn2_work.c