Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
718e7b89
Commit
718e7b89
authored
Jan 09, 2019
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make code compile with --disable-autotuning again
parent
196bbde2
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
207 additions
and
180 deletions
+207
-180
.gitlab-ci.yml
.gitlab-ci.yml
+10
-0
ci_test_scripts/generate_gitlab_ci_tests.py
ci_test_scripts/generate_gitlab_ci_tests.py
+13
-0
src/elpa_impl.F90
src/elpa_impl.F90
+184
-180
No files found.
.gitlab-ci.yml
View file @
718e7b89
...
...
@@ -125,6 +125,16 @@ distcheck-mpi:
distcheck-no-autotune:
tags:
- buildtest
script:
- ./configure FC=mpiifort FCFLAGS="-xHost" CFLAGS="-march=native" SCALAPACK_LDFLAGS="$MKL_INTEL_SCALAPACK_LDFLAGS_MPI_NO_OMP" SCALAPACK_FCFLAGS="$MKL_INTEL_SCALAPACK_FCFLAGS_MPI_NO_OMP" --enable-option-checking=fatal --with-mpi=yes --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 --disable-autotuning || { cat config.log; exit 1; }
# stupid 'make distcheck' leaves behind write-protected files that the stupid gitlab runner cannot remove
- make distcheck DISTCHECK_CONFIGURE_FLAGS="FC=mpiifort FCFLAGS=\"-xHost\" CFLAGS=\"-march=native\" SCALAPACK_LDFLAGS=\"$MKL_INTEL_SCALAPACK_LDFLAGS_MPI_NO_OMP\" SCALAPACK_FCFLAGS=\"$MKL_INTEL_SCALAPACK_FCFLAGS_MPI_NO_OMP\" --with-mpi=yes --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 --disable-autotuning " TASKS=2 TEST_FLAGS="150 50 16" || { chmod u+rwX -R . ; exit 1 ; }
# python tests
python-intel-intel-mpi-openmp:
tags:
...
...
ci_test_scripts/generate_gitlab_ci_tests.py
View file @
718e7b89
...
...
@@ -336,6 +336,19 @@ print(" # stupid 'make distcheck' leaves behind write-protected files that th
print
(
' - make distcheck DISTCHECK_CONFIGURE_FLAGS="FC=mpiifort FCFLAGS=
\\
"-xHost
\\
" CFLAGS=
\\
"-march=native
\\
" SCALAPACK_LDFLAGS=
\\
"$MKL_INTEL_SCALAPACK_LDFLAGS_MPI_NO_OMP
\\
" SCALAPACK_FCFLAGS=
\\
"$MKL_INTEL_SCALAPACK_FCFLAGS_MPI_NO_OMP
\\
" --with-mpi=yes --disable-sse-assembly --disable-sse --disable-avx --disable-avx2" TASKS=2 TEST_FLAGS="150 50 16" || { chmod u+rwX -R . ; exit 1 ; }'
)
print
(
"
\n\n
"
)
print
(
"distcheck-no-autotune:"
)
print
(
" tags:"
)
print
(
" - buildtest"
)
print
(
" script:"
)
print
(
" - ./configure FC=mpiifort FCFLAGS=
\"
-xHost
\"
CFLAGS=
\"
-march=native
\"
SCALAPACK_LDFLAGS=
\"
$MKL_INTEL_SCALAPACK_LDFLAGS_MPI_NO_OMP
\"
SCALAPACK_FCFLAGS=
\"
$MKL_INTEL_SCALAPACK_FCFLAGS_MPI_NO_OMP
\"
--enable-option-checking=fatal --with-mpi=yes --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 --disable-autotuning || { cat config.log; exit 1; }"
)
print
(
" # stupid 'make distcheck' leaves behind write-protected files that the stupid gitlab runner cannot remove"
)
print
(
' - make distcheck DISTCHECK_CONFIGURE_FLAGS="FC=mpiifort FCFLAGS=
\\
"-xHost
\\
" CFLAGS=
\\
"-march=native
\\
" SCALAPACK_LDFLAGS=
\\
"$MKL_INTEL_SCALAPACK_LDFLAGS_MPI_NO_OMP
\\
" SCALAPACK_FCFLAGS=
\\
"$MKL_INTEL_SCALAPACK_FCFLAGS_MPI_NO_OMP
\\
" --with-mpi=yes --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 --disable-autotuning " TASKS=2 TEST_FLAGS="150 50 16" || { chmod u+rwX -R . ; exit 1 ; }'
)
print
(
"
\n\n
"
)
# add python tests
python_ci_tests
=
[
"# python tests"
,
...
...
src/elpa_impl.F90
View file @
718e7b89
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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