Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SPINS_main
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Donovan Allum
SPINS_main
Commits
b19ed904
Commit
b19ed904
authored
11 years ago
by
Christopher Subich
Browse files
Options
Downloads
Patches
Plain Diff
Added config script for MKL build on winisk
parent
ebb3432a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
systems/winisk_mkl.sh
+62
-0
62 additions, 0 deletions
systems/winisk_mkl.sh
with
62 additions
and
0 deletions
systems/winisk_mkl.sh
0 → 100644
+
62
−
0
View file @
b19ed904
#!/bin/bash
# System-specific settings for winisk.math.uwaterloo.ca
# This also doubles for kazan.math.uwaterloo.ca
CC
=
icc
CXX
=
icpc
LD
=
icpc
# System-specific compiler flags
SYSTEM_CFLAGS
=
"-Wno-deprecated -Wall -wd981 -wd444 -wd1572 -wd383 -wd869"
SYSTEM_LDFLAGS
=
# Compiler flags for debugging
DEBUG_CFLAGS
=
"-g -DBZ_DEBUG"
DEBUG_LDFLAGS
=
# Compiler flags for optimization
OPTIM_CFLAGS
=
"-O3 -fp-model fast=2 -ftz"
OPTIM_LDFLAGS
=
$OPTIM_CFLAGS
# Compiler flags for extra optimization, such as -ip -ipo on icc
EXTRA_OPTIM_CFLAGS
=
"-ip -ipo"
EXTRA_OPTIM_LDFLAGS
=
$EXTRA_OPTIM_CFLAGS
# Library names/locations/flags for MPI-compilation. This will
# probably not be necessary on systems with a working mpicc
# alias
MPI_CFLAGS
=
MPI_LIB
=
"-lmpi -lmpi++"
MPI_LIBDIR
=
-L
/opt/sgi/mpt/mpt-2.01/lib
MPI_INCDIR
=
-I
/opt/sgi/mpt/mpt-2.01/include
# Library names/locations for LAPACK
LAPACK_LIB
=
"-lmkl_intel_lp64 -lmkl_sequential -lmkl_core"
LAPACK_LIBDIR
=
LAPACK_INCDIR
=
# Library locations for blitz; leave blank to use system-installed
# or compiled-with-this-package version
BLITZ_LIBDIR
=
BLITZ_INCDIR
=
# Library locations for fftw
FFTW_LIBDIR
=
FFTW_INCDIR
=
# Have to disable SSE2 on itanium machines like winisk/kazan
FFTW_OPTIONS
=(
--disable-sse2
CFLAGS
=
${
OPTIM_CFLAGS
[*]
}
)
# Library locations for UMFPACK
UMF_INCDIR
=
UMF_LIBDIR
=
# Location/library for BLAS
BLAS_LIB
=
$LAPACK_LIB
BLAS_LIBDIR
=
BLAS_INCDIR
=
# Boost toolset override
# Works around a boost bug on itanium machines/icc
# see boost ticket #5001
BOOST_TOOLSET
=
gcc
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment