Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sebastian Ohlmann
elpa
Commits
28d3649a
Commit
28d3649a
authored
Sep 26, 2019
by
Andreas Marek
Browse files
Fix some errors when building tests
parent
e405cfa9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
28d3649a
...
...
@@ -621,26 +621,26 @@ noinst_PROGRAMS += validate_double_instance@SUFFIX@
check_SCRIPTS
+=
validate_double_instance@SUFFIX@_default.sh
validate_double_instance@SUFFIX@
_SOURCES
=
test
/Fortran/elpa2/double_instance.F90
validate_double_instance@SUFFIX@
_LDADD
=
$(test_program_ldadd)
validate_double_instance@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
validate_double_instance@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
$(FC_MODINC)
private_modules
noinst_PROGRAMS
+=
validate_real_2stage_banded@SUFFIX@
check_SCRIPTS
+=
validate_real_2stage_banded@SUFFIX@_default.sh
validate_real_2stage_banded@SUFFIX@
_SOURCES
=
test
/Fortran/elpa2/real_2stage_banded.F90
validate_real_2stage_banded@SUFFIX@
_LDADD
=
$(test_program_ldadd)
validate_real_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
validate_real_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
$(FC_MODINC)
private_modules
noinst_PROGRAMS
+=
validate_complex_2stage_banded@SUFFIX@
check_SCRIPTS
+=
validate_complex_2stage_banded@SUFFIX@_default.sh
validate_complex_2stage_banded@SUFFIX@
_SOURCES
=
test
/Fortran/elpa2/complex_2stage_banded.F90
validate_complex_2stage_banded@SUFFIX@
_LDADD
=
$(test_program_ldadd)
validate_complex_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
validate_complex_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
$(FC_MODINC)
private_modules
if
WANT_SINGLE_PRECISION_REAL
noinst_PROGRAMS
+=
validate_single_real_2stage_banded@SUFFIX@
check_SCRIPTS
+=
validate_single_real_2stage_banded@SUFFIX@_default.sh
validate_single_real_2stage_banded@SUFFIX@
_SOURCES
=
test
/Fortran/elpa2/single_real_2stage_banded.F90
validate_single_real_2stage_banded@SUFFIX@
_LDADD
=
$(test_program_ldadd)
validate_single_real_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
validate_single_real_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
$(FC_MODINC)
private_modules
endif
if
WANT_SINGLE_PRECISION_COMPLEX
...
...
@@ -648,7 +648,7 @@ noinst_PROGRAMS += validate_single_complex_2stage_banded@SUFFIX@
check_SCRIPTS
+=
validate_single_complex_2stage_banded@SUFFIX@_default.sh
validate_single_complex_2stage_banded@SUFFIX@
_SOURCES
=
test
/Fortran/elpa2/single_complex_2stage_banded.F90
validate_single_complex_2stage_banded@SUFFIX@
_LDADD
=
$(test_program_ldadd)
validate_single_complex_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
validate_single_complex_2stage_banded@SUFFIX@
_FCFLAGS
=
$(AM_FCFLAGS)
$(FC_MODINC)
test_modules
$(FC_MODINC)
modules
$(FC_MODINC)
private_modules
endif
# python wrapper
...
...
src/helpers/scalapack_interfaces.h
View file @
28d3649a
void
pdlacpy_
(
char
*
,
int
*
,
int
*
,
double
*
,
int
*
,
int
*
,
int
*
,
double
*
,
int
*
,
int
*
,
int
*
);
void
pdtran_
(
int
*
,
int
*
,
double
*
,
double
*
,
int
*
,
int
*
,
int
*
,
double
*
,
double
*
,
int
*
,
int
*
,
int
*
);
void
pslacpy_
(
char
*
,
int
*
,
int
*
,
float
*
,
int
*
,
int
*
,
int
*
,
float
*
,
int
*
,
int
*
,
int
*
);
void
pstran_
(
int
*
,
int
*
,
float
*
,
float
*
,
int
*
,
int
*
,
int
*
,
float
*
,
float
*
,
int
*
,
int
*
,
int
*
);
void
pzlacpy_
(
char
*
,
int
*
,
int
*
,
double
complex
*
,
int
*
,
int
*
,
int
*
,
double
complex
*
,
int
*
,
int
*
,
int
*
);
void
pdtranc_
(
int
*
,
int
*
,
double
complex
*
,
double
complex
*
,
int
*
,
int
*
,
int
*
,
double
complex
*
,
double
complex
*
,
int
*
,
int
*
,
int
*
);
void
pclacpy_
(
char
*
,
int
*
,
int
*
,
float
complex
*
,
int
*
,
int
*
,
int
*
,
float
complex
*
,
int
*
,
int
*
,
int
*
);
void
pdtranc_
(
int
*
,
int
*
,
float
complex
*
,
float
complex
*
,
int
*
,
int
*
,
int
*
,
float
complex
*
,
float
complex
*
,
int
*
,
int
*
,
int
*
);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment