Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GASPI
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
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
CodeVault
training-material
PGAS-programming
GASPI
Commits
81b64438
Commit
81b64438
authored
5 years ago
by
Michal Pitonak
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
1095afdf
Branches
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
terasort/simple/Makefile
+22
-0
22 additions, 0 deletions
terasort/simple/Makefile
with
22 additions
and
0 deletions
terasort/simple/Makefile
0 → 100644
+
22
−
0
View file @
81b64438
#path to GASPI root installed with MPI support
GASPI
=
/path/to/gpi
#compiler
CC
=
mpicc
#flags
CFLAGS
=
-m64
-I
${
GASPI
}
/include
LDFLAGS
=
-L
${
GASPI
}
/lib64
LIBS
=
-lgomp
-lpthread
-lm
-ldl
-lGPI2
-libverbs
####
SOURCES
=
terasort_gaspi_double_file.c
EXECUTABLE
=
terasort_gaspi_double_file
all
:
$(EXECUTABLE)
$(EXECUTABLE)
:
$(SOURCES)
$(
CC
)
$(
CFLAGS
)
$(
SOURCES
)
$(
LDFLAGS
)
$(
LIBS
)
-o
$@
clean
:
rm
-f
$(
EXECUTABLE
)
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment