Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenSource
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Willem Thorbecke
OpenSource
Commits
f9633912
Commit
f9633912
authored
5 years ago
by
joeri.brackenhoff
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/JanThorbecke/OpenSource
parents
7db49cbc
88a089d1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
FFTlib/rc1fft.c
+1
-1
1 addition, 1 deletion
FFTlib/rc1fft.c
Make_include_template
+5
-1
5 additions, 1 deletion
Make_include_template
with
8 additions
and
2 deletions
.gitignore
+
2
−
0
View file @
f9633912
...
...
@@ -37,6 +37,8 @@ FFTlib/test/ccmtest
FFTlib/test/rc1test
FFTlib/test/rc2dtest
FFTlib/test/rcmtest
FFTlib/test/rc1loop
FFTlib/test/cc1loop
marchenko_applications/HomG
marchenko_applications/MuteSnap
marchenko_applications/combine
...
...
This diff is collapsed.
Click to expand it.
FFTlib/rc1fft.c
+
1
−
1
View file @
f9633912
...
...
@@ -158,7 +158,7 @@ void dfti_status_print(MKL_LONG status)
char
*
error_message
;
error_message
=
DftiErrorMessage
(
status
);
printf
(
"error_message = %s
\n
"
,
error_message
);
printf
(
"error_message = %s
\n
"
,
error_message
);
return
;
}
#endif
...
...
This diff is collapsed.
Click to expand it.
Make_include_template
+
5
−
1
View file @
f9633912
...
...
@@ -88,6 +88,8 @@ MKLLIB=${MKLROOT}/lib
#for GNU compilers
#you might need to add intel64 to : ${MKLROOT}/lib/intel64
BLAS = -L${MKLROOT}/lib/ -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#for GNU on OSX
#BLAS = -L${MKLROOT}/lib/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#on linux you want to use groups and MKL is in lib/intel64
#MKLLIB=${MKLROOT}/lib/intel64
#BLAS = -Wl,-rpath ${MKLLIB} -Wl,--start-group -L${MKLLIB} -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread -lm -ldl
...
...
@@ -106,11 +108,13 @@ MKLLIB=${MKLROOT}/lib
OPTC += -DMKL -I$(MKLROOT)/include
#for GNU compilers
FFT = -Wl,-rpath ${MKLLIB} -L${MKLLIB} -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#for GNU on OSX
#FFT = -L${MKLROOT}/lib/ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#on linux you want to use groups and MKL is in lib/intel64
#MKLLIB=${MKLROOT}/lib/intel64
#FFT = -Wl,-rpath ${MKLLIB} -Wl,--start-group -L${MKLLIB} -lmkl_gf_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread -lm -ldl
#for Intel compilers
#FFT = -Wl,-rpath ${MKLLIB}
-Wl,--start-group
-L${MKLLIB} -lmkl_intel_lp64 -lmkl_sequential -lmkl_core
-Wl,--end-group
-lpthread -lm -ldl
#FFT = -Wl,-rpath ${MKLLIB} -L${MKLLIB} -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl
#LIBARIES
LIBS= -L$L -lgenfft $(FFT) $(BLAS)
...
...
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